forked from Cocolabs-SAS/cocorico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
126 lines (126 loc) · 4.36 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "cocorico/cocorico",
"license": "MIT",
"type": "project",
"description": "The Cocorico Standard Edition distribution",
"version": "0.3.4",
"keywords": [
"collaborative",
"platform",
"consumption"
],
"homepage": "http://cocorico.io",
"authors": [
{
"name": "Cocolabs SAS",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Cocolabs-SAS/cocorico/issues",
"source": "https://github.com/Cocolabs-SAS/cocorico"
},
"autoload": {
"psr-4": {"": "src/"},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": ">=5.4.0",
"symfony/symfony": "2.8.*",
"doctrine/orm": "^2.4.8",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/doctrine-migrations-bundle": "^1.0",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"symfony/assetic-bundle": "~2.8",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"friendsofsymfony/user-bundle": "~1.3",
"jms/i18n-routing-bundle": "^2.0",
"jms/translation-bundle": "^1.2",
"knplabs/doctrine-behaviors": "^1.3",
"a2lix/translation-form-bundle": "2.*@dev",
"jms/di-extra-bundle": "^1.7",
"stof/doctrine-extensions-bundle": "^1.2",
"oneup/uploader-bundle": "~1.3",
"liip/imagine-bundle": "dev-master",
"lexik/currency-bundle": "^2.0",
"willdurand/geocoder-bundle": "^4.1",
"doctrine/mongodb-odm": "^1.0",
"doctrine/mongodb-odm-bundle": "^3.0",
"ramsey/array_column": "~1.1",
"sonata-project/admin-bundle": "~2.3",
"sonata-project/doctrine-orm-admin-bundle": "~2.3",
"sonata-project/block-bundle": "~2.2",
"sonata-project/easy-extends-bundle": "^2.1",
"sonata-project/user-bundle": "^2.2",
"knplabs/knp-menu-bundle": "~2",
"friendsofsymfony/message-bundle": "~1.2",
"whiteoctober/breadcrumbs-bundle": "^1.2",
"hwi/oauth-bundle": "^0.4",
"egeloen/ckeditor-bundle": "^4.0",
"helios-ag/fm-elfinder-bundle": "^6.0",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"egulias/email-validator": "~1.2",
"simplethings/entity-audit-bundle": "^0.9",
"mrclay/minify": "^2.2",
"patchwork/jsqueeze": "^2.0",
"mrclay/minify": "^2.2"
},
"require-dev": {
"sensio/generator-bundle": "~2.3",
"symfony/phpunit-bridge": "~2.7",
"behat/symfony2-extension": "2.0.*@dev",
"behat/mink-extension": "2.0.*@dev",
"behat/mink-browserkit-driver": "1.2.*@dev",
"behat/mink-selenium2-driver": "1.2.*@dev",
"behat/mink-goutte-driver": "1.1.*@dev",
"behat/mink-zombie-driver": "1.2.*@dev",
"doctrine/doctrine-fixtures-bundle": "2.2.*@dev",
"fzaninotto/faker": "~1.5",
"phpunit/phpunit": "4.3.*",
"vipsoft/doctrine-data-fixtures-extension": "3.0.*@dev",
"hpatoio/deploy-bundle": "~1.5"
},
"scripts": {
"post-install-cmd": [
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "5.4.8"
},
"component-dir": "web/assets"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.8-dev"
}
}
}