image-transform/composer.json

36 lines
1 KiB
JSON

{
"name": "byjoby/image-transform",
"description": "A tightly-focused library for performing a very limited set of simple image transformations. This library's purpose is to eschew the standard kitchen sink approach to PHP image libraries in favor of high performance, wide driver support, and a dead simple API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}
],
"autoload": {
"psr-4": {
"ByJoby\\ImageTransform\\": "src/"
}
},
"suggest": {
"ext-imagick": "to use the ImageMagick implementation",
"ext-gmagick": "to use the Gmagick implementation"
},
"require": {
"php": ">=8.1",
"ext-gd": "*"
},
"require-dev": {
"ext-gmagick": "*",
"ext-gd": "*",
"phpunit/phpunit": "^10.3",
"phpstan/phpstan": "^1.10"
},
"autoload-dev": {
"psr-4": {
"ByJoby\\ImageTransform\\tests\\": "tests/"
}
}
}