-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 909 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
34
{
"name": "naprstek/acl-entity",
"type": "library",
"description": "Support for entities annotated for ACL.",
"keywords": ["zf3", "ACL", "entity"],
"license": "BSD-3-Clause",
"authors": [
{"name": "Vladimir Naprstek", "email": "[email protected]"}
],
"require": {
"php": ">=7.0",
"zendframework/zend-permissions-acl": "^2.6",
"zendframework/zend-eventmanager": "^3.2",
"zendframework/zend-code": "^3.3",
"doctrine/annotations": "^1.6",
"doctrine/doctrine-orm-module": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"suggest": {
},
"autoload": {
"psr-4": {"AclEntity\\" : "src/"}
},
"autoload-dev": {
"psr-4": { "AclEntity\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}