forked from BeatSwitch/lock-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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
{
"name": "beatswitch/lock-laravel",
"description": "A Laravel Driver for Lock.",
"keywords": ["laravel", "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-laravel/issues"
},
"require": {
"php": ">=5.5.9",
"beatswitch/lock": "0.1.*",
"illuminate/auth": "5.1.*",
"illuminate/database": "5.1.*",
"illuminate/support": "5.1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"BeatSwitch\\Lock\\Integrations\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\BeatSwitch\\Lock\\Integrations\\Laravel\\": "tests/"
}
}
}