-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.16 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
{
"name": "forestadmin/php-datasource-customizer",
"description": "Subtree split of the PHP Datasource Customizer component",
"type": "library",
"license": "GPL-3.0-or-later",
"version": "1.19.0",
"require": {
"php": "^8.0",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.58",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"forestadmin/php-datasource-toolkit": "1.19.0",
"forestadmin/php-agent-toolkit": "1.19.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^1.21|^2.34",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.4|^6.0",
"spatie/pest-plugin-test-time": "^1.1|^2.1"
},
"autoload": {
"psr-4": {
"ForestAdmin\\AgentPHP\\DatasourceCustomizer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ForestAdmin\\AgentPHP\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}