-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.46 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "jmrashed/php-installer",
"version": "1.2.0",
"description": "Reusable, framework-agnostic web installer for PHP applications — step-by-step installation wizard with multi-database support, migrations, and admin creation.",
"type": "library",
"keywords": [
"installer",
"php",
"web-installer",
"deployment",
"installer-wizard"
],
"homepage": "https://github.com/jmrashed/php-installer",
"license": "MIT",
"authors": [
{
"name": "Md Rasheduzzaman",
"email": "jmrashed@gmail.com",
"homepage": "https://github.com/jmrashed"
}
],
"support": {
"email": "jmrashed@gmail.com",
"issues": "https://github.com/jmrashed/php-installer/issues",
"source": "https://github.com/jmrashed/php-installer"
},
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-curl": "*"
},
"suggest": {
"ext-pdo_mysql": "For MySQL database support",
"ext-pdo_pgsql": "For PostgreSQL database support",
"ext-pdo_sqlite": "For SQLite database support",
"ext-zip": "For ZIP file extraction during database import"
},
"autoload": {
"psr-4": {
"Installer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Installer\\Tests\\": "tests/"
}
},
"scripts": {
"validate": "composer validate --no-check-publish"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}