-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.56 KB
/
composer.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "svycka/sv-images",
"description": "Image manipulation library written in PHP, similar to cloud image processing services like Imgix and Cloudinary. This module simplifies image manipulation for Zend Framework 2",
"keywords": [
"image",
"gd",
"imagemagick",
"imagick",
"sv-images",
"transformation",
"editing",
"zendframework",
"zf2",
"module"
],
"homepage": "https://github.com/svycka/sv-images",
"license": "MIT",
"authors": [
{
"name": "Vytautas Stankus",
"email": "svycka@gmail.com",
"homepage": "https://github.com/svycka"
}
],
"require": {
"php": ">=5.5",
"zendframework/zend-mvc": "~2.5",
"zendframework/zend-modulemanager": "~2.5",
"zendframework/zend-servicemanager": "^2.7.5",
"zendframework/zend-http": "~2.5",
"zendframework/zend-stdlib": "~2.5",
"intervention/image": "~2.3"
},
"require-dev": {
"ext-gd": "*",
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "^2.0",
"scrutinizer/ocular": "~1.1",
"league/flysystem": "^1.0"
},
"suggest": {
"league/flysystem": "To use this library to load image"
},
"autoload": {
"psr-4": {
"SvImages\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SvImagesTest\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}