-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "acoustep/entrust-gui",
"description": "A GUI for the Entrust package.",
"keywords": ["laravel","illuminate","auth","roles","acl","permission","gui"],
"homepage": "https://github.com/acoustep/entrust-gui",
"license": "MIT",
"authors": [
{
"name": "Mitch Stanley",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/console": "~5.0",
"illuminate/support": "~5.0",
"zizaco/entrust": "~1.4.0",
"prettus/l5-repository": "^2.1",
"esensi/model": "0.5.*"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"mockery/mockery": "0.9.*",
"codeception/codeception": "2.1.*",
"codeception/mockery-module": "0.2.*",
"mikey179/vfsStream": "1.5.*",
"symfony/Console": "2.7.*",
"orchestra/testbench": "~3.1",
"aedart/testing-laravel": "1.1.*"
},
"autoload": {
"psr-4": {
"Acoustep\\EntrustGui\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acoustep\\EntrustGui\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}