-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 936 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 936 Bytes
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
{
"name": "ps/image-optimizer",
"type": "library",
"description": "Image optimization / compression library. This library is able to optimize png, jpg and gif files in very easy and handy way. It uses optipng, pngquant, pngcrush, pngout, gifsicle, jpegoptim and jpegtran tools.",
"keywords": ["image optimizer", "compression", "image", "optimization", "jpegoptim", "optipng"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Piotr Sliwa",
"email": "peter.pl7@gmail.com"
}
],
"autoload": {
"psr-0": {
"ImageOptimizer": "src/"
}
},
"require": {
"php": "^7.3 | ^8.0",
"symfony/process": "~3.3 | ~4.0 | ~5.0",
"symfony/options-resolver": "~3.3 | ~4.0 | ~5.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ext-gd": "*"
}
}