-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 KB
/
composer.json
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
{
"name": "cakephp-app-installer/installer",
"description": "GUI Installer Plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"cakephp-4",
"app-installer",
"installer",
"CakePHP-GUI-Installer"
],
"homepage": "https://github.com/anuj9196/CakePHP-App-Installer",
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.3.0"
},
"require-dev": {
"phpunit/phpunit": "@stable"
},
"license": "MIT",
"authors": [
{
"name": "Anuj Sharma",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/anuj9196/CakePHP-App-Installer/issues",
"source": "https://github.com/anuj9196/CakePHP-App-Installer"
},
"autoload": {
"psr-4": {
"CakePHPAppInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakePHPAppInstaller\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
}
}