mirror of
https://github.com/Intervention/image.git
synced 2025-01-16 11:49:02 +01:00
c837fc9ffe
* Update phpstan dependency version * Remove unused code * Optimize code * Add type hints * Change property visibility on final classes * Modernize code
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "intervention/image",
|
|
"description": "PHP image manipulation",
|
|
"homepage": "https://image.intervention.io/",
|
|
"keywords": [
|
|
"image",
|
|
"gd",
|
|
"imagick",
|
|
"watermark",
|
|
"thumbnail",
|
|
"resize"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Oliver Vogel",
|
|
"email": "oliver@intervention.io",
|
|
"homepage": "https://intervention.io/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-mbstring": "*",
|
|
"intervention/gif": "^4.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0 || ^11.0",
|
|
"mockery/mockery": "^1.6",
|
|
"phpstan/phpstan": "^2.1",
|
|
"squizlabs/php_codesniffer": "^3.8",
|
|
"slevomat/coding-standard": "~8.0"
|
|
},
|
|
"suggest": {
|
|
"ext-exif": "Recommended to be able to read EXIF data properly."
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Intervention\\Image\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Intervention\\Image\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|