forked from Sainsburys/guzzle-oauth2-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1020 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
38
39
40
41
42
43
44
45
{
"name": "angrybytes/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"
},
"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"
},
{
"name": "Angry Bytes BV",
"email": "info@angrybytes.com",
"homepage": "https://angrybytes.com/"
}
],
"support": {
"email": "support@angrybytes.com"
}
}