-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (47 loc) · 1.17 KB
/
composer.json
File metadata and controls
49 lines (47 loc) · 1.17 KB
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
{
"name": "d3/guzzle-factory",
"type": "library",
"description": "Guzzle factory",
"keywords": [
"Guzzle",
"http",
"client",
"factory",
"logger"
],
"homepage": "https://www.d3data.de",
"license": "MIT",
"authors": [
{
"name": "Daniel Seifert",
"email": "git@daniel-seifert.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.0",
"d3/sensitive-message-formatter": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9 || ^10",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.0",
"monolog/monolog": "^2.11 || ^3"
},
"autoload": {
"psr-4": {
"D3\\GuzzleFactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"D3\\GuzzleFactory\\tests\\": "tests/"
}
},
"scripts": {
"test": "XDEBUG_MODE=off ./vendor/bin/phpunit --no-coverage",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=coverage",
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose",
"check-code": "./vendor/bin/phpstan analyse -c ./vendor/d3/guzzle-factory/phpstan.neon --no-progress --ansi"
}
}