-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.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
{
"config": {
"vendor-dir": "_vendor",
"preferred-install": {
"s2/rose": "source",
"s2/admin-yard": "source"
}
},
"name": "s2/cms",
"description": "Small and fast CMS",
"minimum-stability": "stable",
"license": "GPL",
"authors": [
{
"name": "Roman Parpalak",
"email": "[email protected]"
}
],
"require": {
"ext-pdo": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-gd": "*",
"matthiasmullie/minify": "^1.3",
"psr/container": "^2.0",
"psr/log": "^3.0",
"s2/rose": "dev-master",
"symfony/cache": "^7.0",
"symfony/error-handler": "^7.0",
"symfony/expression-language": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/routing": "^7.0",
"s2/admin-yard": "dev-master"
},
"autoload": {
"psr-4": {
"S2\\Cms\\": "_include/src",
"s2_extensions\\": "_extensions",
"": "_include/"
},
"files": [
"_include/functions.php"
]
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0.0",
"codeception/module-phpbrowser": "^3.0"
}
}