-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.06 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
{
"name": "jkharley/filament-redirects",
"description": "A Filament resource to create and maintain page redirects for your website.",
"require": {
"php": "^8.0",
"filament/filament": "^2.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8"
},
"license": "MIT",
"autoload": {
"psr-4": {
"JamesHarley\\FilamentRedirects\\": "src"
}
},
"authors": [
{
"name": "James Harley",
"email": "[email protected]"
}
],
"homepage": "https://jamesharley.dev",
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"JamesHarley\\FilamentRedirects\\FilamentRedirectsServiceProvider"
]
}
},
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix"
],
"dry-fix": [
"vendor/bin/php-cs-fixer --using-cache=no --diff --dry-run fix"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}