forked from Sybio/ImageWorkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 942 Bytes
/
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
{
"name": "sybio/image-workshop",
"type": "library",
"description": "Powerful PHP class using GD library to work easily with images including layer notion (like Photoshop or GIMP)",
"keywords": ["image", "thumbnail", "watermark", "resize", "crop", "rotate", "library", "GD", "class"],
"homepage": "http://phpimageworkshop.com",
"license": "MIT",
"authors": [
{
"name": "Clément Guillemain",
"homepage": "http://clementguillemain.fr",
"role": "Developer / Freelancer"
},
{
"name": "ImageWorkshop Community",
"homepage": "https://github.com/Sybio/ImageWorkshop/graphs/contributors"
}
],
"require": {
"php": ">=5.3.0",
"ext-gd": "*",
"ext-exif": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-0": { "PHPImageWorkshop": "src" }
}
}