-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 969 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": "devscast/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"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Devscast\\Tinify\\": "src/"
}
},
"authors": [
{
"name": "bernard-ng",
"email": "bernard@devscast.tech"
}
],
"minimum-stability": "stable",
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^6.0|^7.0",
"phpstan/phpstan": "^1.4"
},
"require": {
"php": ">=8.0",
"symfony/http-client": "^6.0|^7.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/devscast/tinify"
}
]
}