forked from filamentphp/panels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.45 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
{
"name": "filament/filament",
"description": "Effortlessly build TALL-powered admin panels.",
"license": "MIT",
"homepage": "https://github.com/filamentphp/filament",
"support": {
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"require": {
"php": "^8.0",
"danharrin/livewire-rate-limiting": "^0.3|^1.0",
"filament/forms": "self.version",
"filament/support": "self.version",
"filament/tables": "self.version",
"illuminate/auth": "^8.6|^9.0",
"illuminate/console": "^8.6|^9.0",
"illuminate/contracts": "^8.6|^9.0",
"illuminate/cookie": "^8.6|^9.0",
"illuminate/database": "^8.6|^9.0",
"illuminate/http": "^8.6|^9.0",
"illuminate/routing": "^8.6|^9.0",
"illuminate/session": "^8.6|^9.0",
"illuminate/support": "^8.6|^9.0",
"illuminate/view": "^8.6|^9.0",
"livewire/livewire": "^2.6",
"spatie/laravel-package-tools": "^1.9"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Filament\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Filament\\FilamentServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}