mirror of
https://github.com/archtechx/laravel-seo.git
synced 2026-05-06 17:54:03 +00:00
* fix: type error to assign the drie for image manager class * fix: update package names and handle Intervention Image versioning in favicon generation * fix: update intervention/image version constraint in composer.json * cleanup, run CI tests with both intervention v2 and v3 * ci: composer require --dev * phpstan fixes --------- Co-authored-by: Samuel Štancl <samuel@archte.ch>
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "archtechx/laravel-seo",
|
|
"description": "",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Samuel Štancl",
|
|
"email": "samuel@archte.ch"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"files": [
|
|
"src/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"ArchTech\\SEO\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ArchTech\\SEO\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.2",
|
|
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
|
|
"illuminate/view": "^10.0|^11.0|^12.0|^13.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": ">=8.0",
|
|
"larastan/larastan": ">=2.4",
|
|
"pestphp/pest": ">=2.0",
|
|
"pestphp/pest-plugin-laravel": ">=2.0",
|
|
"intervention/image": "^3.0"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"ArchTech\\SEO\\SEOServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
}
|
|
}
|