-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
composer.json
65 lines (65 loc) · 1.72 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
58
59
60
61
62
63
64
65
{
"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://voyager.devdojo.com/",
"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": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2",
"illuminate/support": "~8.0|~9.0|~10.0",
"intervention/image": "^2.7",
"doctrine/dbal": "^3.1|^3.5",
"laravel/ui": ">=1.0",
"arrilot/laravel-widgets": "^3.7",
"league/flysystem": "~1.1|~2.0|~3.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpcov": ">=6.0",
"phpunit/phpunit": ">=8.0",
"laravel/framework": "~8.0|~9.0|~10.0",
"orchestra/testbench": ">=6.0",
"laravel/browser-kit-testing": ">=6.1.0",
"orchestra/testbench-browser-kit": ">=4.0"
},
"autoload": {
"psr-4": {
"TCG\\Voyager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TCG\\Voyager\\Tests\\": "tests/",
"TCG\\Voyager\\Tests\\Database\\Factories\\": "tests/database/factories/",
"Database\\Seeders\\": "vendor/orchestra/testbench-core/laravel/database/seeders"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"TCG\\Voyager\\VoyagerServiceProvider",
"TCG\\Voyager\\Providers\\VoyagerDummyServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
}
}