Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "intervention/image-laravel",
|
|
"description": "Laravel Integration of Intervention Image",
|
|
"homepage": "https://image.intervention.io/",
|
|
"keywords": [
|
|
"image",
|
|
"gd",
|
|
"imagick",
|
|
"watermark",
|
|
"thumbnail",
|
|
"resize",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Oliver Vogel",
|
|
"email": "oliver@intervention.io",
|
|
"homepage": "https://intervention.io/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.3",
|
|
"illuminate/support": "^8|^9|^10|^11|^12|^13",
|
|
"illuminate/http": "^8|^9|^10|^11|^12|^13",
|
|
"illuminate/routing": "^8|^9|^10|^11|^12|^13",
|
|
"intervention/image": "^4.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-fileinfo": "*",
|
|
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
|
|
"orchestra/testbench": "^8.18 || ^9.9 || ^10.6"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Intervention\\Image\\Laravel\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Intervention\\Image\\Laravel\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Intervention\\Image\\Laravel\\ServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Image": "Intervention\\Image\\Laravel\\Facades\\Image"
|
|
}
|
|
}
|
|
}
|
|
}
|