-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
77 lines (77 loc) · 1.77 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
{
"description": "the \"Symfony Standard Edition\" distribution with the networking init CMS bundle configured",
"minimum-stability": "dev",
"prefer-stable": true,
"name": "networking/init-cms-sandbox",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"networking/form-generator-bundle": "^4.0",
"networking/init-cms-bundle": "^4.1",
"symfony/dotenv": "4.4.*",
"symfony/flex": "^1.4"
},
"require-dev": {
"symfony/debug-pack": "*",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*",
"symfony/web-server-bundle": "4.4.*"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/networking/elasticsearch-bundle.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/networking/form-generator-bundle.git",
"no-api": true
}
],
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"security-checker security:check": "script",
"ckeditor:install --clear=drop": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"config": {
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": "true",
"require": "4.4.*"
}
}
}