forked from BeatSwitch/lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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": "[email protected]",
"homepage": "https://www.beatswitch.com"
},
{
"name": "Dries Vints",
"email": "[email protected]",
"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",
"codeclimate/php-test-reporter": "^0.1.2"
},
"autoload": {
"psr-4": {
"BeatSwitch\\Lock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"stubs\\BeatSwitch\\Lock\\": "stubs/",
"tests\\BeatSwitch\\Lock\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}