-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "eightpoints/guzzle-bundle",
"type": "symfony-bundle",
"description": "Integrates Guzzle 7.x/8.x, a PHP HTTP Client, into Symfony. Comes with easy and powerful configuration options and optional plugins.",
"keywords": [
"bundle",
"guzzle",
"symfony",
"rest",
"web service",
"curl",
"client",
"HTTP client"
],
"homepage": "https://github.com/8p/GuzzleBundle",
"license": "MIT",
"authors": [
{
"name": "Florian Preusner",
"email": "florian.preusner@8points.de",
"homepage": "https://github.com/florianpreusner"
},
{
"name": "Community",
"homepage": "https://github.com/8p/GuzzleBundle/contributors"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.4.5|^8.0",
"guzzlehttp/promises": "^1.5.3|^2.0|^3.0",
"guzzlehttp/psr7": "^1.9.1|^2.5|^3.0",
"symfony/framework-bundle": "^6.0|^7.0|^8.0",
"symfony/expression-language": "^6.0|^7.0|^8.0",
"symfony/stopwatch": "^6.0|^7.0|^8.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^7.4|^8.0",
"symfony/twig-bundle": "^6.0|^7.0|^8.0",
"symfony/var-dumper": "^6.0|^7.0|^8.0",
"symfony/yaml": "^6.0|^7.0|^8.0",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"suggest": {
"namshi/cuzzle": "Outputs Curl command on profiler's page for debugging purposes"
},
"autoload": {
"psr-4": {
"EightPoints\\Bundle\\GuzzleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EightPoints\\Bundle\\GuzzleBundle\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
}
}