-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.51 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
{
"name": "superbrave/verbose-error-http-client-bundle",
"description": "Increased verbosity of error messages in the Symfony HTTP client.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Niels Nijens",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"symfony/http-client-contracts": "^3.4",
"symfony/dependency-injection": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.54",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"symfony/http-client": "^6.3|^7.0"
},
"suggest": {
"symfony/http-client": "This package requires an actual Symfony HTTP client implementation to decorate."
},
"provide": {
"symfony/http-client-implementation": "1.1"
},
"autoload": {
"psr-4": {
"Superbrave\\VerboseErrorHttpClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Superbrave\\VerboseErrorHttpClientBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check-phpstan": "vendor/bin/phpstan analyse",
"check-code-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run -v",
"fix-code-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "phpunit"
}
}