forked from unite-cms/unite-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 2.85 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
{
"name": "unite-cms/unite-cms",
"description": "Decoupled, data-centric content management system for creative professionals",
"type": "project",
"authors": [
{
"name": "Franz Wilding",
"email": "[email protected]"
},
{
"name": "Stefan Kamsker",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "./src/Bundle/CoreBundle",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./src/Bundle/CollectionFieldBundle",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./src/Bundle/RegistrationBundle",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./src/Bundle/StorageBundle",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./src/Bundle/VariantsFieldBundle",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./src/Bundle/WysiwygFieldBundle",
"options": {
"symlink": true
}
}
],
"require": {
"doctrine/collections": "1.5.*",
"unite-cms/core-bundle": "0@dev",
"unite-cms/collection-field-bundle": "0@dev",
"unite-cms/registration-bundle": "0@dev",
"unite-cms/storage-bundle": "0@dev",
"unite-cms/variants-field-bundle": "0@dev",
"unite-cms/wysiwyg-field-bundle": "0@dev",
"php": ">=7.1.3",
"ext-json": "*",
"ext-iconv": "*",
"ext-phar": "*",
"ext-curl": "*",
"ext-ctype": "*",
"ext-tokenizer": "*",
"ext-session": "*",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"ext-xml": "*",
"ext-filter": "*",
"ext-intl": "*"
},
"require-dev": {
"symfony/thanks": "^1.1",
"symfony/browser-kit": "^4.2",
"doctrine/data-fixtures": "^1.3",
"symfony/phpunit-bridge": "4.2.*",
"symfony/test-pack": "^1.0",
"phpunit/phpunit": "^7"
},
"scripts": {
"post-install-cmd": [
"bin/console assets:install --symlink"
],
"post-update-cmd": [
"bin/console assets:install --symlink"
]
}
}