generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
54 lines (54 loc) · 1.47 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
{
"name": "croustibat/filament-jobs-monitor",
"description": "Background Jobs monitoring like Horizon for all drivers for FilamentPHP",
"keywords": [
"croustibat",
"laravel",
"filament-jobs-monitor"
],
"homepage": "https://github.com/croustibat/filament-jobs-monitor",
"license": "MIT",
"authors": [
{
"name": "Baptiste",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"filament/filament": "^3.0",
"illuminate/contracts": "^10.0|^11.0",
"spatie/laravel-package-tools": "^1.13.5"
},
"require-dev": {
"laravel/pint": "^1.0"
},
"autoload": {
"psr-4": {
"Croustibat\\FilamentJobsMonitor\\": "src"
}
},
"scripts": {
"lint": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"extra": {
"laravel": {
"providers": [
"Croustibat\\FilamentJobsMonitor\\FilamentJobsMonitorServiceProvider",
"Croustibat\\FilamentJobsMonitor\\QueueMonitorProvider"
],
"aliases": {
"QueueMonitor": "Croustibat\\FilamentJobsMonitor\\QueueMonitorProvider\\Facade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}