forked from Sainsburys/guzzle-oauth2-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 806 Bytes
/
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
{
"name": "sainsburys/guzzle-oauth2-plugin",
"description": "An OAuth2 middleware for Guzzle",
"license": "MIT",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.0|^7.0",
"firebase/php-jwt": "^3.0|^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {
"Sainsburys\\Guzzle\\Oauth2\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload-dev": {
"psr-4": {
"Sainsburys\\Guzzle\\Oauth2\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Bojan Zivanovic"
},
{
"name": "Damien Tournoud"
},
{
"name": "Patrick Dawkins"
},
{
"name": "Daniel Macedo"
}
]
}