-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.16 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
{
"name": "sunlight-cms/skeleton",
"description": "SunLight CMS project template",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-session": "*",
"ext-zip": "*",
"sunlight-cms/console": "^1.1",
"composer/semver": "^3.4.0",
"ezyang/htmlpurifier": "^4.17",
"kuria/cache": "^6.0",
"kuria/debug": "^4.0.1",
"kuria/error": "^4.2.3",
"kuria/event": "^2.0.1",
"kuria/options": "^2.1",
"kuria/request-info": "^1.0.2",
"kuria/url": "^5.0",
"xemlock/htmlpurifier-html5": "^0.1.11"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Sunlight\\Admin\\": "admin/class",
"Sunlight\\": "system/class"
}
},
"scripts": {
"sunlight:clear-cache": "Sunlight\\Composer\\ComposerBridge::clearCache",
"sunlight:post-composer": [
"Sunlight\\Composer\\ComposerBridge::clearCache",
"Sunlight\\Composer\\ComposerBridge::updateDirectoryAccess"
],
"post-update-cmd": [
"bin/console cms.download",
"@sunlight:post-composer"
],
"post-install-cmd": [
"bin/console cms.download",
"@sunlight:post-composer"
]
},
"extra": {
"sunlight-console": {
"is-fresh-project": true,
"cms": {
"version": "latest",
"plugins": {
"extend": [
"devkit",
"codemirror",
"lightbox"
],
"templates": [
"default",
"blank"
],
"languages": [
"cs",
"en"
]
}
}
}
}
}