-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "eljam/guzzle-jwt-middleware",
"description": "A jwt authentication middleware for guzzle 6",
"keywords": ["guzzle", "guzzle6", "jwt", "auth", "http", "psr7", "handler", "middleware"],
"homepage": "https://github.com/eljam/guzzle-jwt-middleware",
"license": "MIT",
"authors": [
{
"name": "Guillaume Cavana",
"email": "[email protected]"
}
],
"autoload" : {
"psr-4" : {
"Eljam\\GuzzleJwt\\" : ["src/"]
}
},
"autoload-dev" : {
"psr-4": {
"Eljam\\GuzzleJwt\\Tests\\": ["tests/"]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"kodus/mock-cache": "^1.0",
"php-coveralls/php-coveralls": "^2.4"
},
"require": {
"php" : ">=7.4.0",
"guzzlehttp/guzzle": "^7.0",
"psr/simple-cache": "^1 || ^2 || ^3",
"symfony/options-resolver": ">=2.8",
"symfony/property-access":">=2.8"
},
"config": {
"bin-dir" : "bin/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
}
}