forked from filamentphp/panels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.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
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
68
69
70
71
72
{
"name": "filament/filament",
"description": "Core package for Filament - a lightweight admin panel for the TALL stack.",
"keywords": [
"laravel",
"tailwind",
"livewire"
],
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"blade-ui-kit/blade-heroicons": "^0.3",
"calebporzio/sushi": "^2.1",
"danharrin/date-format-converter": "^0.2.0",
"danharrin/livewire-rate-limiting": "^0.2.0",
"graham-campbell/markdown": "^13.1",
"illuminate/auth": "^8.0",
"illuminate/console": "^8.0",
"illuminate/container": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/cookie": "^8.0",
"illuminate/filesystem": "^8.0",
"illuminate/http": "^8.0",
"illuminate/notifications": "^8.0",
"illuminate/routing": "^8.0",
"illuminate/session": "^8.0",
"illuminate/support": "^8.0",
"illuminate/validation": "^8.0",
"illuminate/view": "^8.0",
"league/glide-laravel": "^1.0",
"livewire/livewire": "^2.2",
"thomaswelton/laravel-gravatar": "^1.0",
"watson/active": "^6.0"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Filament\\": "src/",
"Filament\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Filament\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Filament\\FilamentServiceProvider"
],
"aliases": {
"FilamentManager": "Filament\\Filament"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit"
}
}