-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "hrevert/ht-profile-image",
"description": "A Zend framework module which adds profile image upload functionality to ZfcUser",
"type": "module",
"license": "MIT",
"keywords": [
"zf2",
"module",
"zendframework"
],
"homepage": "https://github.com/hrevert/HtProfileImage",
"authors": [
{
"name": "Hrevert Technologies",
"email": "[email protected]"
},
{
"name": "ojhaujjwal",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"zendframework/zend-form": "~2.1",
"zendframework/zend-inputfilter": "~2.1",
"zendframework/zend-modulemanager": "~2.1",
"zendframework/zend-mvc": "~2.1",
"zendframework/zend-servicemanager": "~2.1",
"zendframework/zend-stdlib": "~2.1",
"zendframework/zend-validator": "~2.1",
"zendframework/zend-view": "~2.1",
"zf-commons/zfc-user": ">=0.1,<2.0",
"hrevert/ht-img-module": ">=0.1.3,<0.4",
"ext-fileinfo": "*",
"willdurand/negotiation": "1.3.*"
},
"autoload": {
"psr-4": {
"HtProfileImage\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}