-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 863 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 863 Bytes
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": "code4mk/multitrust",
"description": "Latest package for managing multi-auth / single-auth roles and permissions in Laravel by hellolaravel.org",
"keywords": [
"roles",
"permissions",
"acl",
"auth",
"laravel",
"illuminate",
"multi-auth"
],
"license": "MIT",
"authors": [
{
"name": "code4mk"
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": "5.4.*|5.5.x|5.6.x"
},
"autoload": {
"psr-4": {
"Code4mk\\Multitrust\\": "src/"
}
},
"require-dev": {
"orchestra/database": "@dev",
"orchestra/testbench": "@dev",
"mockery/mockery": "^0.9.6",
"phpunit/phpunit": "^5.6",
"satooshi/php-coveralls": "1.0.*",
"sebastian/environment": "2.0.*"
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/User.php"
]
}
}