schneespur/vendor/intervention/image-laravel/composer.json
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +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"
}
}
}
}