summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: fcbad422b91489d348015a86b64de47ccc15150c (plain)
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
{
    "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": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.5"
    },
    "suggest": {
        "ext-exif": "Allows to read and keep images EXIF data"
    },
    "autoload": {
        "psr-0": { "PHPImageWorkshop": "src" }
    }
}