-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.1 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
43
{
"name": "despark/image-purify",
"type": "library",
"description": "Image purifier - A ps/image-optimizer fork",
"keywords": ["image-optimizer", "compression", "image", "optimization", "optipng", "mozjpeg", "gifsicle", "pngquant", "giflossy"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ludmil Simeonov",
"email": "lsimeonov@desark.com"
}
],
"autoload": {
"psr-4": {
"Despark\\ImagePurify\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"require": {
"php": ">=7.0",
"symfony/process": ">=3.0",
"symfony/options-resolver": ">=3.0",
"psr/log": "^1.0",
"monolog/monolog": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"mockery/mockery": "0.9.*",
"php-mock/php-mock-mockery": "~1.1.0"
},
"scripts": {
"test": [
"@composer install",
"@composer dumpautoload",
"vendor/bin/phpunit"
]
}
}