forked from Intervention/image
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.17 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "intervention/image",
"description": "PHP Image Manipulation",
"homepage": "http://image.intervention.io/",
"keywords": ["image", "gd", "imagick", "laravel", "watermark", "thumbnail", "animation", "resize"],
"license": "MIT",
"authors": [
{
"name": "Oliver Vogel",
"email": "[email protected]",
"homepage": "http://olivervogel.com/"
}
],
"require": {
"php": ">=5.4.0",
"intervention/gif": "dev-master",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9.2"
},
"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-4": {
"Intervention\\Image\\": "src/Intervention/Image"
}
},
"autoload-dev": {
"classmap": ["tests"]
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
}
},
"minimum-stability": "stable"
}