forked from sunlight-cms/sunlight-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.26 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
{
"type": "project",
"name": "sunlight-cms/sunlight-cms",
"description": "SunLight CMS",
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-session": "*",
"ext-zip": "*",
"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",
"twbs/bootstrap": "^5.0"
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.1.99"
},
"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",
"Sunlight\\Composer\\ComposerBridge::moveBootstrapAssets"
],
"post-update-cmd": "@sunlight:post-composer",
"post-install-cmd": "@sunlight:post-composer"
}
}