-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·86 lines (86 loc) · 2.19 KB
/
composer.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.19 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dcat-x/laravel-admin",
"description": "A full-featured admin panel builder for Laravel",
"type": "library",
"keywords": [
"laravel",
"admin",
"dashboard",
"crud",
"grid",
"form",
"rbac"
],
"homepage": "https://github.com/dcat-x/dcat-admin",
"license": "MIT",
"authors": [
{
"name": "jqh",
"email": "841324345@qq.com",
"homepage": "https://github.com/jqhph"
},
{
"name": "Cooper",
"email": "myxiaoao@gmail.com",
"homepage": "https://github.com/myxiaoao"
}
],
"support": {
"issues": "https://github.com/dcat-x/dcat-admin/issues",
"source": "https://github.com/dcat-x/dcat-admin"
},
"require": {
"php": "^8.2",
"laravel/framework": "^12.0",
"spatie/eloquent-sortable": "^4.0",
"doctrine/dbal": "^4.0",
"dcat-x/easy-excel": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^10.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Dcat\\Admin\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Dcat\\Admin\\Tests\\": "tests/"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"pint:test": "vendor/bin/pint --test",
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html coverage",
"ci": [
"@pint:test",
"@phpstan",
"@test"
],
"release": "php scripts/release.php",
"release:dry": "php scripts/release.php --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Dcat\\Admin\\AdminServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}