forked from coldume/imagecraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 849 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 849 Bytes
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
{
"name": "coldume/imagecraft",
"type": "library",
"keywords": ["gd", "image", "animation", "resize", "thumbnail", "watermark"],
"description": "A reliable and extensible PHP image manipulation library",
"license": "MIT",
"homepage": "https://github.com/coldume/imagecraft",
"authors": [
{
"name": "Xianghan Wang",
"email": "coldume@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"coldume/imc-stream": "~1.0",
"coldume/translated-exception": "~1.0",
"symfony/event-dispatcher": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.3"
},
"autoload": {
"psr-4": {
"Imagecraft\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.1.x-dev"
}
}
}