-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 956 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "objective-php/acl",
"description": "Access Control List engine",
"type": "library",
"keywords": [
"acl",
"permissions",
"security",
"objective php"
],
"homepage": "https://github.com/objective-php/acl",
"license": "GPL-3.0",
"authors": [
{
"name": "Gauthier 'Rusty' Delamarre",
"email": "gauthier@objective-php.org",
"role": "lead"
}
],
"require": {
"php": ">=7.0",
"objective-php/primitives": "^1.3.6",
"objective-php/services-factory": "^1.2"
},
"require-dev": {
"codeception/codeception": "^2.1",
"phpro/grumphp": "^0.11.6",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.3"
},
"autoload": {
"psr-4": {
"ObjectivePHP\\Acl\\": "src/"
}
}
}