-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
131 lines (131 loc) · 3.56 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
127
128
129
130
131
{
"type": "project",
"license": "GPL-3.0",
"name": "sedici/celsius3",
"description": "The Celsius3 Project",
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-zip": "*",
"ext-zmq": "*",
"beberlei/doctrineextensions": "~1.0",
"cboden/ratchet": "0.3.*",
"doctrine/annotations": "~1.2",
"doctrine/data-fixtures": "~1.1",
"doctrine/dbal": "~2.5",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"doctrine/doctrine-migrations-bundle": "^2.2",
"doctrine/orm": "~2.5",
"egeloen/serializer-bundle": "^1.0",
"egulias/email-validator": "^2.1",
"enqueue/elastica-bundle": "^0.9.3",
"enqueue/fs": "^0.9.12",
"excelwebzone/recaptcha-bundle": "^1.4",
"friendsofsymfony/elastica-bundle": "^5.0",
"friendsofsymfony/http-cache-bundle": "~2.1",
"friendsofsymfony/jsrouting-bundle": "~1.5",
"friendsofsymfony/message-bundle": "~1.3",
"friendsofsymfony/oauth-server-bundle": "~1.5",
"friendsofsymfony/rest-bundle": "~1.7",
"friendsofsymfony/user-bundle": "2.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"jms/aop-bundle": "^1.2",
"jms/di-extra-bundle": "^1.8",
"jms/i18n-routing-bundle": "^2.0",
"jms/serializer-bundle": "~1.1",
"jms/translation-bundle": "^1.3",
"knplabs/knp-components": "~1.3",
"knplabs/knp-menu-bundle": "~2.1",
"knplabs/knp-paginator-bundle": "2.5.*",
"php-http/guzzle6-adapter": "^1.1",
"php-http/httplug-bundle": "^1.7",
"predis/predis": "^1.0",
"react/zmq": "~0.3",
"sabberworm/php-css-parser": "~8.0",
"salavert/time-ago-in-words": "1.*",
"sensio/framework-extra-bundle": "^3.0.2",
"snc/redis-bundle": "~2.0",
"stof/doctrine-extensions-bundle": "~1.2",
"symfony/console": "3.4.*",
"symfony/dotenv": "3.4.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "3.4.*",
"symfony/intl": "^3.4",
"symfony/monolog-bundle": "~2.4",
"symfony/process": "^3.4",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/twig-bundle": "^3.4",
"symfony/webpack-encore-bundle": "^1.8",
"symfony/yaml": "3.4.*",
"twig/extensions": "^1.5",
"umpirsky/composer-permissions-handler": "~1.4",
"willdurand/geocoder": "~2.8",
"willdurand/js-translation-bundle": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"symfony/phpunit-bridge": "~2.7",
"symfony/stopwatch": "^3.4",
"symfony/web-profiler-bundle": "^3.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Celsius3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Celsius3\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"writable-dirs": [
"app/cache",
"app/logs",
"app/spool",
"web/uploads"
],
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.8-dev"
},
"symfony": {
"allow-contrib": false,
"require": "3.4.*"
}
}
}