forked from ForestAdmin/laravel-forestadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.54 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
{
"name": "forestadmin/laravel-forestadmin",
"version": "3.0.1",
"description": "Forest Admin provides an off-the-shelf administration panel based on a highly-extensible API plugged into your application.",
"type": "library",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"asm89/stack-cors": "^2.0",
"illuminate/cache": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"forestadmin/php-datasource-customizer": "^1.1",
"forestadmin/php-datasource-eloquent": "^1.1",
"doctrine/dbal": "^3.0|^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-mock": "^1.0",
"pestphp/pest-plugin-laravel": "^1.4",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.4|^6.0"
},
"autoload": {
"psr-4": {
"ForestAdmin\\LaravelForestAdmin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ForestAdmin\\LaravelForestAdmin\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"ForestAdmin\\LaravelForestAdmin\\ForestServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}