forked from CraftCamp/php-abac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 881 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": "kilix/php-abac",
"description": "Library used to implement Attribute-Based Access Control in a PHP application",
"type": "library",
"keywords": ["access-control", "attributes", "security"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Axel Venet",
"email": "[email protected]",
"homepage": "http://www.kilix.fr",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"psr/cache": "~1.0",
"symfony/config": "~3.0",
"symfony/yaml" : "~3.0",
"symfony/serializer" : "~3.0"
},
"support": {
"email": "[email protected]"
},
"autoload" : {
"psr-4": {
"PhpAbac\\": "src/",
"PhpAbac\\Example\\": "example/",
"PhpAbac\\Test\\": "tests/"
}
}
}