forked from psliwa/image-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 883 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
27
{
"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": {
"symfony/process": "~2.0 | ~3.0 | ~4.0",
"symfony/options-resolver": "~2.1 | ~3.0 | ~4.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
}
}