-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·68 lines (65 loc) · 2.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"minimum-stability": "dev",
"name": "symfony/framework-standard-edition",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "v2.2.4",
"doctrine/orm": "2.4.6",
"doctrine/doctrine-bundle": "v1.2.0",
"twig/extensions": "1.0.*@dev",
"symfony/assetic-bundle": "v2.3.0",
"symfony/swiftmailer-bundle": "v2.2.3",
"symfony/monolog-bundle": "v2.2.0",
"sensio/distribution-bundle": "v2.2.3",
"sensio/framework-extra-bundle": "v2.2.3",
"sensio/generator-bundle": "v2.3.3",
"jms/security-extra-bundle": "1.5.1",
"jms/di-extra-bundle": "1.4.0",
"kriswallsmith/assetic": "v1.1.1",
"friendsofsymfony/user-bundle": "v1.3.1",
"doctrine/data-fixtures" : "v1.0.0-ALPHA4",
"doctrine/doctrine-fixtures-bundle": "2.2.1",
"stof/doctrine-extensions-bundle": "v1.2.0",
"gregwar/image-bundle": "v2.0.19",
"cedriclombardot/admingenerator-generator-bundle": "v1.0.0",
"cedriclombardot/twig-generator": "v1.0.0",
"shtumi/useful-bundle": "dev-master#c48ef1a",
"sonata-project/doctrine-orm-admin-bundle": "2.2.1",
"sonata-project/admin-bundle": "2.2.2",
"sonata-project/jquery-bundle": "1.8.*@dev",
"sonata-project/block-bundle": "2.2.3",
"friendsofsymfony/facebook-bundle": "1.2.1",
"doctrine/mongodb-odm-bundle": "v3.0.0-BETA4",
"doctrine/mongodb-odm": "1.0.0-BETA9",
"symfony/options-resolver": "v2.2.4",
"symfony/doctrine-bridge": "v2.2.4",
"doctrine/mongodb": "1.0.0-BETA1",
"gedmo/doctrine-extensions": "v2.3.6",
"symfony/debug": "3.4.x-dev"
},
"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"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}