-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
47 lines (43 loc) · 1.64 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
{
"name": "gregurco/guzzle-bundle-oauth2-plugin",
"type": "library",
"description": "OAuth2 Plugin for Guzzle Bundle, a PHP HTTP client library and framework for building RESTful web service clients",
"keywords": ["oauth2", "middleware", "plugin", "framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "https://github.com/gregurco/GuzzleBundleOAuth2Plugin",
"license": "MIT",
"authors": [
{
"name": "Gregurco Vlad",
"email": "[email protected]",
"homepage": "https://github.com/gregurco"
},
{
"name": "Community",
"homepage": "https://github.com/gregurco/GuzzleBundleOAuth2Plugin/contributors"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"eightpoints/guzzle-bundle": "^8.0",
"symfony/http-kernel": "~5.0|~6.0|~7.0",
"symfony/config": "~5.0|~6.0|~7.0",
"symfony/dependency-injection": "~5.0|~6.0|~7.0",
"symfony/expression-language": "~5.0|~6.0|~7.0",
"sainsburys/guzzle-oauth2-plugin": "^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~5.0|~6.0|~7.0",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"psr-4": {
"Gregurco\\Bundle\\GuzzleBundleOAuth2Plugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gregurco\\Bundle\\GuzzleBundleOAuth2Plugin\\Tests\\": "tests"
}
}
}