forked from csarrazi/CsaGuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "freshcells/guzzle-bundle",
"type": "symfony-bundle",
"description": "A bundle integrating GuzzleHttp >= 6.0",
"license": "Apache-2.0",
"authors": [
{
"name": "Ivo Bathke",
"email": "[email protected]"
},
{
"name": "Charles Sarrazin",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"freshcells/guzzle-cache-middleware": "^2",
"freshcells/guzzle-history-middleware": "^2",
"freshcells/guzzle-stopwatch-middleware": "^2",
"guzzlehttp/guzzle": "^6.1 || ^7.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/event-dispatcher": "^4.0 || ^5.0",
"symfony/error-handler": "^4.0 || ^5.0",
"symfony/filesystem": "^4.0 || ^5.0",
"symfony/framework-bundle": "^4.0 || ^5.0",
"symfony/http-foundation": "^4.0 || ^5.0",
"symfony/finder": "^4.0 || ^5.0",
"symfony/routing": "^4.0 || ^5.0",
"twig/twig": "^2.10 || ^3.0"
},
"require-dev": {
"namshi/cuzzle": "^2.0",
"phpunit/phpunit": "^8.0",
"symfony/phpunit-bridge": "^4.0 || ^5.0",
"symfony/web-profiler-bundle": "^4.0 || ^5.0",
"symfony/twig-bundle": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"doctrine/cache": "Allows caching of responses",
"namshi/cuzzle": "Output command to repeat request in command line",
"psr/cache": "Allows caching of responses",
"tolerance/tolerance": "Allows retrying failed requests"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --extensions=php --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --extensions=php --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-main": "4.0-dev"
}
},
"autoload": {
"psr-4": {
"Csa\\Bundle\\GuzzleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Csa\\Bundle\\GuzzleBundle\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "git",
"url": "https://github.com/freshcells/guzzle-cache-middleware.git"
},
{
"type": "git",
"url": "https://github.com/freshcells/guzzle-history-middleware.git"
},
{
"type": "git",
"url": "https://github.com/freshcells/guzzle-stopwatch-middleware.git"
}
]
}