-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 531 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 531 Bytes
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
{
"name": "githen/cmsengine",
"description": "CMS生成HTML模板引擎",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Githen\\CmsEngine\\": "src/"
}
},
"authors": [
{
"name": "githen"
}
],
"require": {
"illuminate/support": "^6.20",
"ext-mbstring": "*"
},
"extra": {
"laravel": {
"providers": [
"Githen\\CmsEngine\\CmsProvider"
]
}
}
}