-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
41 lines (41 loc) · 998 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
{
"name": "admad/cakephp-jwt-auth",
"type": "cakephp-plugin",
"description": "CakePHP plugin for authenticating using JSON Web Tokens",
"keywords": [
"cakephp",
"authenticate",
"authentication",
"jwt"
],
"homepage": "http://github.com/ADmad/cakephp-jwt-auth",
"authors": [
{
"name":"ADmad",
"role":"Author",
"homepage":"https://github.com/ADmad"
}
],
"license": "MIT",
"support": {
"source":"https://github.com/ADmad/cakephp-jwt-auth",
"issues":"https://github.com/ADmad/cakephp-jwt-auth/issues"
},
"require": {
"cakephp/cakephp": "^4.0",
"firebase/php-jwt": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "~8.5.0"
},
"autoload": {
"psr-4": {
"ADmad\\JwtAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ADmad\\JwtAuth\\Test\\": "tests"
}
}
}