forked from rudott/symfony-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·102 lines (102 loc) · 4.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "endroid/symfony-application",
"license": "MIT",
"type": "project",
"description": "Endroid Symfony Application",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.5",
"doctrine/orm": "~2.2",
"doctrine/doctrine-bundle": "~1.2",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.3",
"sensio/distribution-bundle": "~3.0",
"sensio/framework-extra-bundle": "~3.0",
"sensio/generator-bundle": "~2.3",
"incenteev/composer-parameter-handler": "~2.0",
"doctrine/doctrine-fixtures-bundle": "~2.1",
"doctrine/migrations": "dev-master",
"doctrine/doctrine-migrations-bundle": "dev-master",
"sonata-project/doctrine-orm-admin-bundle": "~2.2",
"sonata-project/media-bundle": "~2.2",
"sonata-project/user-bundle": "~2.2",
"ircmaxell/password-compat": "~1.0",
"raulfraile/ladybug-bundle": "~1.0",
"netvlies/form-bundle": "~1.0",
"phpexcel/phpexcel": "~1.7",
"phpword/phpword": "dev-master",
"knplabs/knp-snappy-bundle": "~1.0",
"stfalcon/tinymce-bundle": "~0.2",
"friendsofsymfony/elastica-bundle": "~3.0",
"friendsofsymfony/rest-bundle": "~1.1",
"knplabs/knp-paginator-bundle": "~2.3@dev",
"knplabs/knp-components": "~1.2@dev",
"jms/i18n-routing-bundle": "~1.0",
"jms/serializer-bundle": "~0.13",
"gedmo/doctrine-extensions": "~2.3",
"fp/lightopenid": "dev-master",
"fp/openid-bundle": "~2.0",
"endroid/google-analytics-bundle": "~1.0",
"nelmio/api-doc-bundle": "~2.4",
"friendsofsymfony/oauth-server-bundle": "~1.4",
"snc/redis-bundle": "~1.1",
"predis/predis": "~0.8",
"symfony/icu": "~1.0",
"symfony-cmf/create-bundle": "~1.0",
"midgard/createphp": "~1.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "~0.4",
"behat/symfony2-extension": "*",
"behat/mink-extension": "*",
"behat/mink-browserkit-driver": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium2-driver": "*",
"phpspec/phpspec": "2.0.*@dev",
"phpunit/phpunit": "~4.0"
},
"scripts": {
"post-install-cmd": [
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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": [
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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"
},
"minimum-stability": "stable",
"extra": {
"create-directory": "vendor/symfony-cmf/create-bundle/Symfony/Cmf/Bundle/CreateBundle/Resources/public/vendor/create",
"create-repository": "https://github.com/bergie/create.git",
"create-commit": "a148ce9633535930d7b4b70cc1088102f5c5eb90",
"ckeditor-directory": "vendor/symfony-cmf/create-bundle/Symfony/Cmf/Bundle/CreateBundle/Resources/public/vendor/ckeditor",
"ckeditor-repository": "https://github.com/ckeditor/ckeditor-releases.git",
"ckeditor-commit": "bba29309f93a1ace1e2e3a3bd086025975abbad0",
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}