forked from z-song/laravel-admin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
75 lines (75 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
{
"name": "exceedone/laravel-admin",
"description": "laravel admin",
"type": "library",
"keywords": ["laravel", "admin", "grid", "form"],
"homepage": "https://github.com/z-song/laravel-admin",
"license": "MIT",
"authors": [
{
"name": "zsong",
"email": "zosong@126.com"
}
],
"require": {
"php": "^8.0.0",
"symfony/dom-crawler": "^6.3",
"laravel/framework": "^10.10",
"intervention/image": "^2.7",
"doctrine/dbal": "^3.6",
"maatwebsite/excel": "^3.1"
},
"require-dev": {
"laravel/laravel": "^10.0",
"phpunit/phpunit": "^9.0",
"symfony/css-selector": "~5.2",
"fakerphp/faker": "^1.9",
"laravel/browser-kit-testing": "~6.2",
"phpstan/phpstan": "^1.10",
"matthiasmullie/minify": "^1.3",
"nunomaduro/larastan": "^2.5",
"orchestra/testbench": "^8.0",
"spatie/eloquent-sortable": "^4.0"
},
"autoload": {
"psr-4": {
"Encore\\Admin\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Models\\": "tests/models",
"Tests\\Controllers\\": "tests/controllers",
"Tests\\Factories\\": "tests/factories"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit",
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"phpstan": [
"@php vendor/bin/phpstan analyse"
]
},
"suggest": {
"intervention/image": "Required to handling and manipulation upload images (~2.3).",
"spatie/eloquent-sortable": "Required to built orderable gird."
},
"extra": {
"laravel": {
"providers": [
"Encore\\Admin\\AdminServiceProvider"
],
"aliases": {
"Admin": "Encore\\Admin\\Facades\\Admin"
}
}
}
}