This repository has been archived by the owner on Jan 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathcomposer.json
57 lines (57 loc) · 1.51 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
{
"name": "grafite/cms",
"description": "Add a CMS to any Laravel app/website to gain control of: pages, blogs, galleries, events, custom modules, images and more.",
"license": "MIT",
"authors": [
{
"name": "Matt Lantz",
"email": "mattlantz@gmail.com"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "^5.7",
"grafite/crudmaker": "1.4.*",
"grafite/formmaker": "1.3.*",
"laravelcollective/html": "^5.7",
"devfactory/minify": "1.0.*",
"aws/aws-sdk-php": "^3.18",
"league/flysystem-aws-s3-v3": "^1.0",
"graham-campbell/markdown": "^10.0",
"intervention/image": "^2.4",
"stichoza/google-translate-php": "^3.2",
"donatj/phpuseragentparser": "^0.5.3"
},
"require-dev": {
"mockery/mockery": "~1.0",
"mikey179/vfsstream": "^1.6",
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4": {
"Grafite\\Cms\\": "src/"
},
"files": [
"src/Helpers/blade.php",
"src/Helpers/general.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/factories/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Grafite\\Cms\\GrafiteCmsProvider"
]
}
}
}