-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.19 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
{
"name": "forestadmin/symfony-forestadmin",
"version": "1.2.0",
"prefer-stable": true,
"description": "Forest Admin provides an off-the-shelf administration panel based on a highly-extensible API plugged into your application.",
"type": "symfony-bundle",
"require": {
"php": ">=8.0",
"asm89/stack-cors": "^2.1",
"doctrine/orm": "^2.8|^3.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"forestadmin/php-datasource-doctrine": "^1.20.0",
"forestadmin/php-datasource-customizer": "^1.20.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-mock": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"ForestAdmin\\SymfonyForestAdmin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ForestAdmin\\SymfonyForestAdmin\\Tests\\": "tests/"
}
},
"bin": [
"bin/forest"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ForestAdmin/symfony-forestadmin/issues"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}