-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.71 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
{
"name": "codedor/filament-seo",
"description": "Package to manage SEO tags for models and routes in Filament",
"keywords": [
"codedor",
"laravel",
"filament-seo"
],
"homepage": "https://github.com/codedor/filament-seo",
"license": "MIT",
"require": {
"php": "^8.2",
"codedor/filament-media-library": "^2.1|^3.0",
"codedor/filament-translatable-tabs": "^1.3",
"codedor/laravel-locale-collection": "^1.2",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"spatie/laravel-package-tools": "^1.12",
"spatie/laravel-translatable": "^6.5"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0|^8.0",
"larastan/larastan": "^2.0|^3.0",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"pestphp/pest": "^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
"phpstan/extension-installer": "^1.1|^2.0",
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
"phpstan/phpstan-phpunit": "^1.0|^2.0"
},
"autoload": {
"psr-4": {
"Codedor\\Seo\\": "src",
"Codedor\\Seo\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Codedor\\Seo\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Codedor\\Seo\\Providers\\SeoServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}