forked from thedevdojo/voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.46 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": "tcg/voyager",
"description": "A Laravel Admin Package for The Control Group to make your life easier and steer your project in the right direction",
"keywords": ["laravel", "admin", "panel"],
"license": "MIT",
"homepage": "https://the-control-group.github.io/voyager/",
"support": {
"issues": "https://github.com/the-control-group/voyager/issues",
"source": "https://github.com/the-control-group/voyager"
},
"authors": [
{
"name": "Tony Lea",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.3.0|~5.4.0",
"intervention/image": "^2.3",
"doctrine/dbal": "^2.5",
"larapack/doctrine-support": "~0.1.0",
"arrilot/laravel-widgets": "^3.7",
"league/flysystem": "~1.0.35"
},
"require-dev": {
"phpunit/phpcov": "~3.0",
"phpunit/phpunit": "~5.7.14",
"laravel/framework": "~5.3.29|5.4.*",
"orchestra/testbench": "3.3.*|3.4.x-dev",
"orchestra/database": "3.3.*|3.4.x-dev",
"laravel/browser-kit-testing": "~1.0.0",
"orchestra/testbench-browser-kit": "~3.3.0|~3.4.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"TCG\\Voyager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TCG\\Voyager\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}