-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 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
{
"name": "widiu7omo/filament-bandel",
"description": "Banned Model with Filament Bandel",
"keywords": [
"widiu7omo",
"laravel",
"filament-bandel"
],
"homepage": "https://github.com/widiu7omo/filament-bandel",
"license": "MIT",
"authors": [
{
"name": "Danar Widi",
"email": "[email protected]",
"role": "Creator"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"cybercog/laravel-ban": "^4.8",
"illuminate/contracts": "^11.8",
"spatie/laravel-package-tools": "^1.14"
},
"autoload": {
"psr-4": {
"Widiu7omo\\FilamentBandel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Widiu7omo\\FilamentBandel\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Widiu7omo\\FilamentBandel\\FilamentBandelServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.4",
"pestphp/pest-plugin-laravel": "^2.0"
}
}