forked from boxmeup/Boxmeup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "boxmeup/boxmeup",
"type": "library",
"description": "Boxmeup application.",
"keywords": ["boxmeup"],
"homepage": "http://boxmeupapp.com",
"license": "GPL3",
"authors": [
{
"name": "Chris Saylor",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.10",
"composer/installers": "*",
"cakephp/cakephp": "2.10.11",
"neutron/sphinxsearch-api": "2.0.8",
"cjsaylor/gchart": "2.0.2",
"mailgun/mailgun-php": "1.5"
},
"require-dev": {
"cakephp/debug_kit": "2.2.*"
},
"config": {
"vendor-dir": "app/Vendor"
},
"scripts": {
"post-install-cmd": [
"if [ ! -f ./app/Config/environment.php ]; then cp ./app/Config/environment.sample.php ./app/Config/environment.php; fi",
"chmod -R 0777 app/tmp"
]
},
"extra" : {
"installer-paths": {
"app/Plugin/{$name}/": ["type:cakephp-plugin"]
}
}
}