1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-06 22:00:38 +01:00
intervention_image/composer.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2014-05-10 20:28:08 +02:00
{
"name": "intervention/image",
"description": "Image handling and manipulation library with support for Laravel 4 integration",
"homepage": "http://image.intervention.io/",
2014-05-14 15:44:34 +02:00
"keywords": ["image", "gd", "imagick", "laravel", "watermark", "thumbnail"],
2014-05-10 20:28:08 +02:00
"license": "MIT",
"authors": [
{
"name": "Oliver Vogel",
"email": "oliver@olivervogel.net",
"homepage": "http://olivervogel.net/"
}
],
"require": {
"php": ">=5.3.0",
"ext-fileinfo": "*",
2014-05-17 23:57:42 +02:00
"illuminate/support": "4.*",
"illuminate/config": "4.*"
2014-05-10 20:28:08 +02:00
},
"require-dev": {
"phpunit/phpunit": "3.*",
"mockery/mockery": "0.9.*"
},
"suggest": {
"ext-gd": "to use GD library based image processing.",
2014-05-17 23:57:42 +02:00
"ext-imagick": "to use Imagick based image processing.",
"intervention/imagecache": "Caching extension for the Intervention Image library"
2014-05-10 20:28:08 +02:00
},
"autoload": {
"psr-0": {
"Intervention\\Image\\": "src/"
}
},
2014-05-10 20:55:40 +02:00
"minimum-stability": "dev"
2014-05-10 20:28:08 +02:00
}