-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.17 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
{
"name": "artisancms/cms",
"description": "A CMS package for Laravel",
"license": "MIT",
"authors": [
{
"name": "Andrew huggins",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.7.0",
"intervention/image": "^2.4",
"arrilot/laravel-widgets": "^3.7",
"league/flysystem": "~1.0.41",
"larapack/voyager-hooks": "~1.0.5"
},
"require-dev": {
"laravel/framework": "^5.7",
"phpunit/phpunit": "^7.4",
"orchestra/testbench": "^3.7",
"orchestra/testbench-core": "^3.7",
"orchestra/testbench-browser-kit": "^3.7",
"phpunit/phpcov": "^5.0",
"laravel/browser-kit-testing": "^4.0",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"ArtisanCMS\\CMS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArtisanCMS\\CMS\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"ArtisanCMS\\CMS\\ArtisanCMSServiceProvider"
]
}
}
}