-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
78 lines (78 loc) · 2.57 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
76
77
78
{
"name": "alterphp/easyadmin-extension-bundle",
"type": "symfony-bundle",
"description": "This bundle provides some extensions to easycorp/easyadmin-bundle",
"keywords": ["backend", "admin", "generator"],
"homepage": "https://github.com/alterphp/EasyAdminExtensionBundle",
"license": "MIT",
"authors": [
{
"name": "Pierre-Charles Bertineau",
"email": "pc.bertineau@alterphp.com"
}
],
"require": {
"php": "^7.4|^8.0",
"doctrine/collections": "^1.5",
"doctrine/common": "^2.11|^3.0",
"doctrine/dbal": "^2.10|^3.0",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^1.3|^2",
"easycorp/easyadmin-bundle": "^2.3.4",
"symfony/config": "^5.3|^6.0",
"symfony/dependency-injection": "^5.3|^6.0",
"symfony/event-dispatcher": "^5.3|^6.0",
"symfony/form": "^5.3|^6.0",
"symfony/framework-bundle": "^5.3|^6.0",
"symfony/http-foundation": "^5.3|^6.0.7",
"symfony/http-kernel": "^5.3|^6.0",
"symfony/property-access": "^5.3|^6.0",
"symfony/validator": "^5.3|^6.0",
"twig/twig": "^3.3.8"
},
"require-dev": {
"doctrine/data-fixtures": "^1.3",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friendsofphp/php-cs-fixer": "^2.11",
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": "^1.0",
"psr/log": "~1.0",
"symfony/browser-kit": "^5.3|^6.0",
"symfony/console": "^5.3|^6.0",
"symfony/css-selector": "^5.3|^6.0",
"symfony/dom-crawler": "^5.3|^6.0",
"symfony/phpunit-bridge": "^4.3.5|^5.0",
"symfony/polyfill-mbstring": "^1.7",
"symfony/security-bundle": "^5.3|^6.0",
"symfony/thanks": "^1.2.10",
"symfony/twig-bundle": "^5.3|^6.0",
"symfony/var-dumper": "^5.3|^6.0",
"symfony/yaml": "^5.3|^6.0"
},
"conflict": {
"easycorp/easyadmin-bundle": "<2.2.2"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.3",
"ext-intl": "1.0"
}
},
"autoload": {
"psr-4": { "AlterPHP\\EasyAdminExtensionBundle\\": "src/" },
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4": {
"AppTestBundle\\": "tests/Fixtures/AppTestBundle/",
"AlterPHP\\EasyAdminExtensionBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
}
}
}