This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
53 lines (53 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "willdurand/propilex",
"description": "Silex + Propel + Backbone",
"license": "MIT",
"authors": [
{
"name": "William DURAND",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"propel/propel-service-provider": "~1.0@dev",
"propel/propel1": "~1.7",
"silex/silex": "~1.0",
"symfony/validator": "~2.4",
"willdurand/hateoas": "~2.0",
"symfony/yaml": "~2.4",
"willdurand/stack-negotiation": "0.1.*",
"stack/builder": "~1.0",
"stack/run": "~1.0",
"symfony/config": "~2.4",
"pagerfanta/pagerfanta": "~1.0",
"hautelook/templated-uri-router": "~1.0@dev",
"nicl/silex-markdown": "~1.1",
"kphoen/negotiation-service-provider": "~1.0",
"asm89/stack-cors": "0.2.*"
},
"require-dev": {
"symfony/browser-kit": "~2.4",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": { "Propilex": "src" }
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"heroku": {
"framework": "silex",
"document-root": "web",
"index-document": "index.php",
"compile": [
"cp app/config/propel/runtime-conf.xml.dist app/config/propel/runtime-conf.xml",
"cp app/config/propel/build.properties.dist app/config/propel/build.properties",
"chmod +x vendor/propel/propel1/generator/bin/phing.php",
"bin/bootstrap",
"./node_modules/.bin/bower install || true"
]
}
}
}