forked from efficiently/authority-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "efficiently/authority-controller",
"description": "AuthorityController is an PHP authorization library for Laravel 4 which restricts what resources a given user is allowed to access.",
"keywords": [
"cancan",
"can",
"authority",
"acl",
"role",
"permission",
"ability",
"allow",
"deny",
"rbac",
"authorization",
"authentication",
"security",
"laravel",
"rails"
],
"license": "MIT",
"authors": [
{
"name": "TortueTorche",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"machuga/authority-l4": "2.2.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "0.9.*",
"orchestra/testbench": "2.2.*"
},
"autoload": {
"classmap": [
"tests/AcTestCase.php", "tests/helpers", "tests/fixtures/", "tests/fixtures/models", "tests/fixtures/controllers"
],
"files": [
"src/Efficiently/AuthorityController/helpers.php"
],
"psr-0": {
"Efficiently\\AuthorityController": "src/"
}
},
"extra": {
"branch-alias": {
"dev-1.0": "1.0.x-dev",
"dev-1.1": "1.1.x-dev",
"dev-1.2": "1.2.x-dev"
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev"
}