37 lines
1 KiB
JSON
37 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 Imagick implementation",
|
|
"ext-gmagick": "to use the Gmagick implementation"
|
|
},
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-gd": "*"
|
|
},
|
|
"require-dev": {
|
|
"atoum/atoum": "^3.4",
|
|
"atoum/stubs": "^2.6"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ByJoby\\ImageTransform\\tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "./vendor/bin/atoum -d tests"
|
|
}
|
|
}
|