forked from BeatSwitch/lock
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
38
39
40
41
{
"name": "beatswitch/lock",
"description": "A flexible, driver based Acl package for PHP 5.4+",
"keywords": ["acl", "permissions", "security", "roles", "BeatSwitch", "asserts", "conditions", "drivers"],
"homepage": "https://github.com/BeatSwitch/lock",
"license": "MIT",
"authors": [
{
"name": "BeatSwitch",
"email": "hello@beatswitch.com",
"homepage": "https://www.beatswitch.com"
},
{
"name": "Dries Vints",
"email": "dries.vints@gmail.com",
"homepage": "http://driesvints.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/BeatSwitch/lock/issues"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"BeatSwitch\\Lock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"stubs\\BeatSwitch\\Lock\\": "stubs/",
"tests\\BeatSwitch\\Lock\\": "tests/"
}
}
}