-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (40 loc) · 976 Bytes
/
composer.json
File metadata and controls
41 lines (40 loc) · 976 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "rcs/cms",
"description": "A Laravel CMS Package to make your life easier and steer your project in the right direction",
"keywords": ["laravel", "admin", "panel", "cms"],
"license": "MIT",
"homepage": "https://github.com/rcraig12/cms",
"support": {
"issues": "https://github.com/rcraig12/cms/issues",
"source": "https://github.com/rcraig12/cms"
},
"authors": [
{
"name": "Robert Craig",
"email": "rcraig12@gmail.com"
}
],
"require": {
},
"require-dev": {
"laravel/framework": "5.5.*"
},
"autoload": {
"psr-4": {
"RCS\\CMS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RCS\\CMS\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"RCS\\CMS\\CMSServiceProvider"
]
}
}
}