forked from Sybio/ImageWorkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.22 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
{
"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": ">=7.2.0",
"ext-fileinfo": "*",
"ext-gd": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^8.5.13",
"phpstan/phpstan": "^1.3"
},
"suggest": {
"ext-exif": "Allows to read and keep images EXIF data"
},
"autoload": {
"psr-4": {
"PHPImageWorkshop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPImageWorkshop\\Tests\\": "tests/"
}
}
}