-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 920 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": "curiosity26/acl-helper-bundle",
"description": "Allows direct querying for entities with ACLs implied",
"type": "symfony-bundle",
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^4.1.12",
"symfony/acl-bundle": "^1.0",
"doctrine/doctrine-bundle": "^1.9",
"doctrine/orm": "^2.6",
"symfony/class-loader": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"symfony/phpunit-bridge": "^4.1",
"theofidry/alice-data-fixtures": "^1.1",
"doctrine/data-fixtures": "^1.3",
"ext-pdo_sqlite": "^7.2",
"ocramius/proxy-manager": "^2.2"
},
"license": "MIT",
"authors": [
{
"name": "Alex Boyce",
"email": "curiosity26@gmail.com"
}
],
"autoload": {
"psr-4": {
"Curiosity26\\AclHelperBundle\\": ""
}
}
}