forked from jqhph/dcat-admin
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·67 lines (67 loc) · 1.57 KB
/
composer.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.57 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
{
"name": "printnow/laravel-admin",
"description": "Dcat admin 永久分叉版 / 支持 Laravel 12, PHP 版本限制 >= 8.1(支持 PHP 8.4)",
"type": "library",
"keywords": [
"dcat",
"laravel",
"admin",
"grid",
"form",
"laravel admin",
"dcat admin"
],
"homepage": "https://github.com/PrintNow/dcat-admin",
"license": "MIT",
"authors": [
{
"name": "Shine",
"email": "i@nowtime.cc"
},
{
"name": "jqh",
"email": "841324345@qq.com"
}
],
"require": {
"php": ">=8.1",
"laravel/framework": "~10.0|~11.0|~12.0",
"spatie/eloquent-sortable": "4.*",
"doctrine/dbal": "~3.0|~4.0",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-zip": "*",
"ext-libxml": "*"
},
"require-dev": {
"laravel/dusk": "^8.3",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0",
"fakerphp/faker": "^1.24",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Dcat\\Admin\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Dcat\\Admin\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Dcat\\Admin\\AdminServiceProvider"
]
}
}
}