-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathcomposer.json
26 lines (26 loc) · 834 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
{
"name": "stefangabos/zebra_image",
"type": "library",
"description": "A single-file, lightweight PHP library designed for efficient image manipulation featuring methods for modifying images and applying filters",
"keywords": ["php","image", "gd", "thumbnail", "resize", "crop", "filters"],
"homepage": "https://github.com/stefangabos/Zebra_Image/",
"license": "LGPL-3.0",
"authors": [
{
"name": "Stefan Gabos",
"email": "[email protected]",
"homepage": "https://github.com/stefangabos/",
"role": "Developer"
}
],
"require": {
"php": ">=5.0.0"
},
"autoload": {
"classmap": ["Zebra_Image.php"]
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "*"
}
}