This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.75 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
{
"name": "andrey-helldar/laravel-roles",
"description": "Simple roles and permissions handling for Laravel",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "permissions", "permission", "rbac", "roles", "acl", "security"],
"support": {
"issues": "https://github.com/andrey-helldar/laravel-roles/issues",
"source": "https://github.com/andrey-helldar/laravel-roles"
},
"authors": [
{
"name": "Andrey Helldar",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3|^8.0",
"doctrine/dbal": "^2.6",
"illuminate/auth": "^5.5|^6.0|^7.0|^8.0",
"illuminate/cache": "^5.5|^6.0|^7.0|^8.0",
"illuminate/console": "^5.5|^6.0|^7.0|^8.0",
"illuminate/contracts": "^5.5|^6.0|^7.0|^8.0",
"illuminate/database": "^5.5|^6.0|^7.0|^8.0",
"illuminate/http": "^5.5|^6.0|^7.0|^8.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0",
"symfony/http-kernel": "^3.3|^4.0|^5.0"
},
"require-dev": {
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Helldar\\Roles\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"suggest": {
"symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Helldar\\Roles\\ServiceProvider"
]
}
}
}