generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.77 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
64
65
66
67
{
"name": "binary-cats/laravel-rbac",
"description": "Laravel 11 enum-backed RBAC extension of spatie/laravel-permission",
"keywords": [
"binary-cats",
"enum",
"laravel",
"rbac"
],
"homepage": "https://github.com/binary-cats/laravel-rbac",
"license": "MIT",
"authors": [
{
"name": "Cyrill N Kalita",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0",
"lorisleiva/laravel-actions": "^2.8",
"spatie/laravel-collection-macros": "^7.0",
"spatie/laravel-package-tools": "^1.16",
"spatie/laravel-permission": "^6.4"
},
"require-dev": {
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"BinaryCats\\LaravelRbac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BinaryCats\\LaravelRbac\\Tests\\": "tests/"
}
},
"suggest": {
"binary-cats/laravel-mailgun-webhooks": "Handle Mailgun webhooks in your Laravel application",
"binary-cats/laravel-sku": "Generate SKUs for Eloquent models"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BinaryCats\\LaravelRbac\\RbacServiceProvider"
],
"aliases": {
"Rbac": "BinaryCats\\LaravelRbac\\Facades\\Rbac"
}
},
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}