forked from GrafiteInc/CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.36 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
{
"name": "yab/quarx",
"description": "Add a CMS to any Laravel apps gain control of: pages, blogs, galleries, events, custom modules, images and more.",
"license": "MIT",
"authors": [
{
"name": "Matt Lantz",
"email": "[email protected]"
},
{
"name": "Chris Blackwell",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "5.4.*",
"yab/laracogs": "2.2.*",
"devfactory/minify": "1.0.*",
"spatie/laravel-analytics": "^1.4",
"aws/aws-sdk-php": "^3.18",
"league/flysystem-aws-s3-v3": "^1.0",
"graham-campbell/markdown": "^7.1",
"intervention/image": "^2.3",
"stichoza/google-translate-php": "^3.2",
"donatj/phpuseragentparser": "^0.5.3"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"mockery/mockery": "^0.9.4",
"orchestra/testbench": "3.4.*|3.4-dev",
"mikey179/vfsStream": "^1.6"
},
"autoload": {
"psr-4": {
"Yab\\Quarx\\": "src/"
},
"files": [
"src/Helpers/blade.php",
"src/Helpers/general.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}