forked from bensquire/php-image-optim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·37 lines (37 loc) · 981 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
28
29
30
31
32
33
34
35
36
37
{
"name": "elfeffe/php-image-optim",
"type": "library",
"description": "A library to aid in image optimisation",
"keywords": ["image", "php", "optimisation", "png", "jpg", "gif"],
"homepage": "https://github.com/elfeffe/php-image-optim",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/elfeffe/php-image-optim"
}
],
"authors": [
{
"name": "Ben Squire",
"email": "b.squire@gmail.com",
"homepage": "https://github.com/bensquire/php-image-optim"
}
],
"support": {
"issues": "https://github.com/elfeffe/php-image-optim/issues",
"wiki": "https://github.com/elfeffe/php-image-optim/wiki"
},
"require": {
"php": ">=5.3.0",
"ext-hash": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"PHPImageOptim": "src/"
}
}
}