-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "choccybiccy/twitch-tokens",
"description": "A library to verify Twitch JWT tokens.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin Hughes",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Twitch\\Auth\\Token\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Twitch\\Auth\\Token\\": "spec/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.7",
"psr/http-message": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"web-token/jwt-signature": "^2.0",
"web-token/jwt-signature-algorithm-rsa": "^2.0",
"web-token/jwt-core": "^2.0",
"psr/simple-cache": "^1.0",
"psr/http-factory": "^1.0",
"ext-json": "*",
"ext-gmp": "*"
},
"require-dev": {
"php-http/message": "^1.8",
"phpspec/phpspec": "^5.1",
"symfony/var-dumper": "^4.3"
}
}