-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "robopuff/tinypng",
"description": "Modern TinyPNG client for PHP",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"tinypng", "tinyjpg", "tinify", "tiny-png", "tiny-jpg"
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"psr/cache": "^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"guzzlehttp/guzzle": "^7.4.5",
"ext-json": "*"
},
"require-dev": {
"paragonie/certainty": "^2.8",
"phan/phan": "^4.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TinyPng\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TinyPngTest\\": "test/"
}
},
"scripts": {
"phan": "phan --color --allow-polyfill-parser",
"analyse": "phpstan analyse --ansi -n -c ./phpstan.neon",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always test/Integration.php",
"test-suite": [
"@analyse",
"@phan",
"@cs-check",
"@test"
]
}
}