-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (32 loc) · 822 Bytes
/
composer.json
File metadata and controls
33 lines (32 loc) · 822 Bytes
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
{
"name": "easycorp/easyadmin-no-final-plugin",
"type": "composer-plugin",
"description": "It removes the 'final' PHP keyword from all EasyAdmin classes so you can extend those classes in your projects.",
"license": "MIT",
"authors": [
{
"name": "Project Contributors",
"homepage": "https://github.com/EasyCorp/EasyAdminBundle/graphs/contributors"
}
],
"require": {
"php": ">=8.0.2",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0"
},
"autoload": {
"psr-4": {
"EasyCorp\\Bundle\\EasyAdminBundle\\": "src"
}
},
"config": {
"platform": { "php": "8.0.2" },
"preferred-install": { "*": "dist" },
"sort-packages": true
},
"extra": {
"class": "EasyCorp\\Bundle\\EasyAdminBundle\\NoFinalClassPlugin"
}
}