forked from Althinect/filament-spatie-roles-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.63 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
{
"name": "althinect/filament-spatie-roles-permissions",
"description": "",
"keywords": [
"althinect",
"filament-spatie-roles-permissions"
],
"homepage": "https://github.com/althinect/filament-spatie-roles-permissions",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tharinda Rodrigo",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"filament/filament": "^3.0",
"illuminate/support": "^9|^10|^11",
"spatie/laravel-permission": "^5.4|^6.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"orchestra/testbench": "^7.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5"
},
"autoload": {
"psr-4": {
"Althinect\\FilamentSpatieRolesPermissions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Althinect\\FilamentSpatieRolesPermissions\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Althinect\\FilamentSpatieRolesPermissions\\FilamentSpatieRolesPermissionsServiceProvider"
],
"aliases": {
"FilamentSpatieRolesPermissions": "Althinect\\FilamentSpatieRolesPermissions\\FilamentSpatieRolesPermissionsFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}