forked from voyager-admin/voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (63 loc) · 2.05 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": "pro-cms/voyager",
"description": "A Laravel Admin Package to make your life easier and steer your project in the right direction",
"keywords": ["laravel", "admin", "panel"],
"license": "MIT",
"homepage": "https://voyager-admin.com",
"support": {
"issues": "https://github.com/voyager-admin/voyager/issues",
"source": "https://github.com/voyager-admin/voyager"
},
"authors": [
{
"name": "Tony Lea",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1",
"ext-json": "*",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/support": "^10.0",
"doctrine/dbal": "^3.3",
"composer/composer": "^2.0",
"emptynick/voyager-tiptap": "*",
"spatie/laravel-image-optimizer": "^1.7",
"intervention/image": "^2.7",
"inertiajs/inertia-laravel": "^0.6.9",
"tightenco/ziggy": "^1.4",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"voyager-admin/voyager-testbench-plugin": "*",
"nunomaduro/larastan": "^1.0.2"
},
"scripts": {
"test": "./vendor/bin/phpunit --no-coverage",
"test:stop": "./vendor/bin/phpunit --no-coverage --stop-on-defect --stop-on-error --stop-on-failure",
"coverage:html": "php -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-html=build",
"coverage:clover": "php -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-clover=coverage.xml",
"stan": "./vendor/bin/phpstan analyse"
},
"autoload": {
"psr-4": {
"Voyager\\Admin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Voyager\\Admin\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Voyager\\Admin\\VoyagerServiceProvider"
],
"aliases": {
"Voyager": "Voyager\\Admin\\Facades\\Voyager"
}
}
}
}