forked from Zizaco/entrust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.7 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
61
62
63
{
"name": "zizaco/entrust",
"description": "This package provides a flexible way to add Role-based Permissions to Laravel 4",
"keywords": ["laravel","illuminate","auth","roles"],
"license": "MIT",
"authors": [
{
"name": "Zizaco Zizuini",
"email": "[email protected]"
},
{
"name": "Andrew Elkins",
"homepage": "http://www.andrewelkins.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~4.0|5.0.*@dev",
"laravelbook/ardent": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"illuminate/database": "~4.0|5.0.*@dev",
"symfony/process": "~2.3"
},
"repositories": [
{
"type": "package",
"package": {
"name": "laravelbook/ardent",
"version": "2.5.0",
"source": {
"type": "git",
"url": "https://github.com/andrewelkins/ardent.git",
"reference": "master"
},
"autoload": {
"psr-0": {
"LaravelBook\\Ardent": "src/"
}
}
}
}
],
"suggest": {
"zizaco/confide":"Confide is an authentication solution for Laravel 4 that couples very well with Entrust"
},
"autoload": {
"classmap": [
"src/commands"
],
"psr-4": {
"Zizaco\\Entrust\\": "src/Entrust/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"minimum-stability": "dev"
}