-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "fossar/guzzle-transcoder",
"description": "Guzzle plugin that converts responses to UTF-8",
"type": "library",
"require": {
"php": ">=7.2.5",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"fossar/transcoder": "^1.0 || ^2.0",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.0",
"symfony/phpunit-bridge": "^6.2"
},
"autoload": {
"psr-4": { "Fossar\\GuzzleTranscoder\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Fossar\\GuzzleTranscoder\\Tests\\": "tests/" }
},
"license": "MIT",
"authors": [
{
"name": "Jan Tojnar",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --verbose --diff",
"fix": "php-cs-fixer fix --verbose --diff",
"lint": "parallel-lint src",
"phpstan": "phpstan analyze",
"test": "simple-phpunit"
},
"minimum-stability": "stable"
}