-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.31 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "filament/filament",
"description": "A collection of full-stack components for accelerated Laravel app development.",
"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.2",
"chillerlan/php-qrcode": "^5.0",
"filament/actions": "self.version",
"filament/forms": "self.version",
"filament/infolists": "self.version",
"filament/notifications": "self.version",
"filament/schemas": "self.version",
"filament/support": "self.version",
"filament/tables": "self.version",
"filament/widgets": "self.version",
"pragmarx/google2fa": "^8.0|^9.0",
"pragmarx/google2fa-qrcode": "^3.0"
},
"autoload": {
"files": [
"src/global_helpers.php",
"src/helpers.php"
],
"psr-4": {
"Filament\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Filament\\FilamentServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}