forked from wizbit/GuzzleBundleMiddlewarePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (40 loc) · 1.48 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
{
"name": "wizbit/guzzle-bundle-middleware-plugin",
"type": "library",
"description": "A generic middleware plugin for Guzzle Bundle, a PHP HTTP client library and framework for building RESTful web service clients",
"keywords": ["middleware", "plugin", "framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "https://github.com/wizbit/GuzzleBundleMiddlewarePlugin",
"license": "MIT",
"authors": [
{
"name": "Marcus Speight",
"email": "[email protected]"
},
{
"name": "Community",
"homepage": "https://github.com/wizbit/GuzzleBundleMiddlewarePlugin/graphs/contributors"
}
],
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "^6.0",
"eightpoints/guzzle-bundle": "~7.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0",
"symfony/config": "~2.7|~3.0|~4.0",
"symfony/dependency-injection": "~2.7|~3.0|~4.0",
"symfony/expression-language": "~2.7|~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.1"
},
"autoload": {
"psr-4": {
"Wizbit\\Bundle\\GuzzleBundleCachePlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Wizbit\\Bundle\\GuzzleBundleCachePlugin\\Tests\\": "tests"
}
}
}