-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1.01 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
{
"name": "tanthammar/filament-extras",
"description": "Filament macros, pages, fields, columns and other helpers",
"license": "MIT",
"homepage": "https://github.com/tanthammar/filament-extras",
"support": {
"issues": "https://github.com/tanthammar/filament-extras/issues",
"source": "https://github.com/tanthammar/filament-extras"
},
"require": {
"php": "^8.1|^8.2|^8.3",
"brick/phonenumber": "^0.6.0",
"laravel/framework": "^10.6 | ^11.0",
"spatie/laravel-permission": "^5.5.0",
"filament/filament": "^3.2.106",
"tanthammar/laravel-rules": "dev-main"
},
"autoload": {
"psr-4": {
"TantHammar\\FilamentExtras\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"TantHammar\\FilamentExtras\\FilamentExtrasServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}