mirror of
https://github.com/Intervention/image.git
synced 2025-01-16 19:58:14 +01:00
2615e0d3fc
An issue in Mockery (https://github.com/padraic/mockery/issues/348) prevented SplFileInfo classes from being mocked. This commit changes the Mockery version requirement to 0.9.x@dev, as it has been fixed in master, but not yet tagged as a release.
34 lines
1021 B
JSON
34 lines
1021 B
JSON
{
|
|
"name": "intervention/image",
|
|
"description": "Image handling and manipulation library with support for Laravel 4 integration",
|
|
"homepage": "http://image.intervention.io/",
|
|
"keywords": ["image", "gd", "imagick", "laravel", "watermark", "thumbnail"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Oliver Vogel",
|
|
"email": "oliver@olivervogel.net",
|
|
"homepage": "http://olivervogel.net/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.0",
|
|
"ext-fileinfo": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "3.*",
|
|
"mockery/mockery": "0.9.*@dev"
|
|
},
|
|
"suggest": {
|
|
"ext-gd": "to use GD library based image processing.",
|
|
"ext-imagick": "to use Imagick based image processing.",
|
|
"intervention/imagecache": "Caching extension for the Intervention Image library"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Intervention\\Image\\": "src/"
|
|
}
|
|
},
|
|
"minimum-stability": "stable"
|
|
}
|