schneespur/release/schneespur-1.0.2/vendor/intervention/image-laravel/composer.json
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
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>
2026-05-18 16:54:11 +00:00

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"
}
}
}
}