-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
61 lines (61 loc) · 1.72 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
60
61
{
"name": "hrevert/ht-img-module",
"description": "Image manipulation module for Zend Framework 2",
"type": "library",
"keywords": [
"zf2",
"zf3",
"module",
"zendframework"
],
"license": "MIT",
"homepage": "https://github.com/hrevert/HtImgModule",
"authors": [
{
"name": "Hrevert Technologies",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-mvc": "^2.7.10 || ^3.0",
"zendframework/zend-servicemanager": "^2.7.6 || ^3.1",
"zendframework/zend-modulemanager": "^2.6",
"zendframework/zend-stdlib": "^2.7 || ^3.0",
"zendframework/zend-http": "^2.5",
"zendframework/zend-eventmanager": "^2.7 || ^3.0",
"imagine/Imagine": "^0.7.1",
"symfony/http-foundation": "~3.4"
},
"require-dev": {
"ext-gd": "*",
"zendframework/zend-escaper": "^2.2",
"zendframework/zend-view": "^2.7",
"zendframework/zend-filter": "^2.5",
"league/flysystem": "0.4.*",
"knplabs/gaufrette":"^0.1.9",
"phpunit/phpunit": "^5.7",
"doctrine/instantiator": "1.0.5",
"phine/test": "1.*"
},
"suggest": {
"league/flysystem": "To use this library to load image",
"knplabs/gaufrette": "To use this library to load image",
"zendframework/zend-view": "To use some view helpers provided this module"
},
"extra": {
"zf": {
"module": [
"HtImgModule"
]
}
},
"autoload": {
"psr-4": {
"HtImgModule\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}