-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "cleitonalmeida/watermark",
"description": "Insert watermark on your images easily using this module to ZendFramework 2",
"type": "library",
"keywords": [
"watermark", "image", "zf2", "zend", "framework"
],
"homepage": "https://github.com/CleitonAlmeida/watermark",
"license": "MIT",
"authors": [
{
"name": "Cleiton Almeida",
"email": "contato@cleitonalmeida.com.br",
"homepage": "http://cleitonalmeida.com.br/",
"role": "Developer"
},
{
"name": "Igor Mukhin",
"email": "igor.mukhin@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*"
},
"suggest": {
"webino/webino-image-thumb": "Image Thumbnailer for Zend Framework."
},
"autoload": {
"psr-0": {
"WaterMark": "src/"
},
"classmap": [
"Module.php"
]
}
}