forked from ubc/iPeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 915 Bytes
/
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
{
"require": {
"compass/cake-guard": "1.0.5",
"nategood/httpful": "^0.2.20"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phing/phing": "2.*",
"pdepend/pdepend" : "2.*",
"phpmd/phpmd" : "@stable",
"squizlabs/php_codesniffer": "2.*",
"sebastian/phpcpd": "*",
"jms/serializer": "1.7.*",
"phpdocumentor/phpdocumentor": "^2.9"
},
"scripts": {
"post-install-cmd": [
"[ -e app/config/database.php ] || cp app/config/database.php.default app/config/database.php",
"[ -L app/plugins/guard ] || [ -d app/plugins/guard ] || ln -s ../../vendor/compass/cake-guard app/plugins/guard",
"[ -e app/config/guard.php ] || cp app/plugins/guard/config/guard_default.php app/config/guard.php",
"mkdir -p app/tmp && chmod 777 app/tmp"
]
},
"config": {
"platform": {
"php": "7.2"
}
}
}