-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.05 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
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
{
"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": "contact@stefangabos.ro",
"homepage": "https://github.com/stefangabos/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3"
},
"autoload": {
"psr-4": {
"stefangabos\\Zebra_Image\\": "./"
}
},
"require-dev": {
"phpstan/phpstan": "^2",
"squizlabs/php_codesniffer": "^3"
},
"support": {
"issues": "https://github.com/stefangabos/Zebra_Image/issues",
"source": "https://github.com/stefangabos/Zebra_Image"
},
"config": {
"sort-packages": true
}
}