-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
38 lines (37 loc) · 1.17 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
{
"repositories": [
{
"type": "git",
"url": "https://github.com/IMSGlobal/caliper-php"
}
],
"require": {
"compass/cake-guard": "1.0.8",
"nategood/httpful": "^0.2.20",
"imsglobal/caliper": "dev-develop#c7e34e230abc7bbb647f8f94245cb649f6191bcd as 1.2.0"
},
"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"
],
"test": "cake/console/cake -app app testsuite app group system"
},
"config": {
"platform": {
"php": "7.2"
}
}
}