-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "tilleuls/acl-sonata-admin-extension-bundle",
"type": "symfony-bundle",
"description": "ACL list filtering for SonataAdmin",
"keywords": ["sonata", "admin", "acl"],
"homepage": "http://les-tilleuls.coop",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "http://dunglas.fr"
}
],
"require": {
"php": "^7.2",
"sonata-project/admin-bundle": "^2.2.2 || ^3.0",
"symfony/dependency-injection": "^2.2 || ^3.0",
"doctrine/dbal": "^2.2 || ^3.0",
"symfony/security-acl": "^3.0",
"symfony/security-core": "^3.4 || ^4.4"
},
"autoload": {
"psr-4": {
"CoopTilleuls\\Bundle\\AclSonataAdminExtensionBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}