-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
37 lines (37 loc) · 950 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": "usefulteam/jwt-auth",
"description": "JWT Auth",
"type": "wordpress-plugin",
"license": "GPLv3",
"authors": [
{
"name": "Bagus",
"email": "[email protected]"
},
{
"name": "Daniel Kudwien",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"firebase/php-jwt": "^6.3",
"collizo4sky/persist-admin-notices-dismissal": "^1.4"
},
"require-dev": {
"php": ">=7.4",
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.8.1",
"ext-json": "*",
"ext-curl": "*"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"autoload-dev": {
"psr-4": {
"UsefulTeam\\Tests\\JwtAuth\\": "tests/src/",
"UsefulTeam\\Tests\\JwtAuth\\Fixtures\\": "tests/fixtures/"
}
}
}