forked from tinify/tinify-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (35 loc) · 804 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
38
39
40
41
{
"name": "tinify/tinify",
"description": "PHP client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.",
"keywords": [
"tinify",
"tinypng",
"tinyjpg",
"compress",
"images",
"api"
],
"homepage": "https://tinify.com/developers",
"license": "MIT",
"support": {
"email": "support@tinify.com"
},
"authors": [{
"name": "Rolf Timmermans",
"email": "rolftimmermans@voormedia.com"
}],
"require": {
"php": ">=5.3.0",
"ext-curl": "*",
"ext-json": "*",
"lib-curl": ">=7.19.0"
},
"require-dev": {
"symfony/yaml": "~2.0",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"files": ["lib/Tinify.php", "lib/Tinify/Exception.php"],
"psr-4": {"Tinify\\": "lib/Tinify/"}
}
}