-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 2.08 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
{
"minimum-stability": "dev",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.2",
"symfony/symfony": "2.1.*",
"doctrine/orm": "2.2.0",
"doctrine/doctrine-bundle": "dev-master",
"doctrine/mongodb-odm-bundle": "dev-master",
"twig/extensions": "dev-master",
"symfony/assetic-bundle": "dev-master",
"symfony/swiftmailer-bundle": "2.1.x-dev",
"symfony/monolog-bundle": "dev-master",
"sensio/distribution-bundle": "2.1.x-dev",
"sensio/framework-extra-bundle": "2.1.x-dev",
"sensio/generator-bundle": "2.1.x-dev",
"jms/security-extra-bundle": "1.1.*",
"friendsofsymfony/user-bundle": "dev-master",
"propel/propel-bundle": "1.1.x-dev",
"phing/phing": "2.4.12",
"willdurand/propel-typehintable-behavior": "dev-master",
"white-october/pagerfanta-bundle": "dev-master",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"cedriclombardot/admingenerator-activeadmintheme-bundle": "dev-master",
"cedriclombardot/admingenerator-user-bundle": "dev-master"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}