1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 04:08:14 +01:00
intervention_image/composer.json

34 lines
1016 B
JSON
Raw Normal View History

2014-05-10 20:28:08 +02:00
{
"name": "intervention/image",
2014-09-02 20:28:51 +02:00
"description": "Image handling and manipulation library with support for Laravel integration",
2014-05-10 20:28:08 +02:00
"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-10 20:28:08 +02:00
},
"require-dev": {
"phpunit/phpunit": "3.*",
2014-09-06 09:29:33 +10:00
"mockery/mockery": "~0.9.2"
2014-05-10 20:28:08 +02:00
},
"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.",
2014-08-01 11:04:36 +02:00
"intervention/imagecache": "Caching extension for the Intervention Image library"
2014-05-10 20:28:08 +02:00
},
"autoload": {
"psr-0": {
"Intervention\\Image\\": "src/"
}
},
2014-06-08 16:54:42 +02:00
"minimum-stability": "stable"
2014-05-10 20:28:08 +02:00
}