-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·46 lines (46 loc) · 1.3 KB
/
composer.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.3 KB
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
{
"name": "cwsps154/users-roles-permissions",
"description": "Filament User & Roles & Permissions",
"keywords": [
"cwsps154",
"laravel",
"filament",
"filament-packages",
"filament-plugins",
"filament-users-roles-permissions"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"CWSPS154\\UsersRolesPermissions\\": "src/",
"CWSPS154\\UsersRolesPermissions\\Database\\Seeders\\": "database/seeders/"
}
},
"authors": [
{
"name": "CWSPS154",
"email": "codewithsps154@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"codewithdennis/filament-select-tree": "^4.0",
"filament/filament": "^4.0",
"ysfkaya/filament-phone-input": "^4.0",
"wildside/userstamps": "^2.4",
"filament/spatie-laravel-media-library-plugin": "^4.0",
"spatie/laravel-package-tools": "^1.15.0",
"erlandmuchasaj/laravel-gzip": "^1.1",
"php-ffmpeg/php-ffmpeg": "^v1.3.1"
},
"extra": {
"laravel": {
"providers": [
"CWSPS154\\UsersRolesPermissions\\UsersRolesPermissionsServiceProvider"
]
}
}
}