-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·48 lines (48 loc) · 1.37 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
44
45
46
47
48
{
"name": "mixerapi/jwt-auth",
"description": "A JWT authentication plugin for CakePHP.",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": ["cakephp", "jwt", "cakephp jwt", "cakephp jwt auth", "cakephp jwt authentication"],
"require": {
"ext-openssl": "*",
"php": "^8.1",
"cakephp/authentication": "^3.0",
"cakephp/cakephp": "^5.0",
"firebase/php-jwt": "^6.2"
},
"require-dev": {
"josegonzalez/dotenv": "^3.2",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"MixerApi\\JwtAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MixerApi\\JwtAuth\\": "plugins/jwt-auth/src/",
"MixerApi\\JwtAuth\\Test\\": "plugins/jwt-auth/tests/",
"MixerApi\\JwtAuth\\Test\\App\\": "plugins/jwt-auth/tests/test_app/src/"
}
},
"support": {
"issues": "https://github.com/mixerapi/mixerapi-dev/issues",
"source": "https://github.com/mixerapi/mixerapi-dev/"
},
"authors": [
{
"name": "MixerApi",
"role": "Organization"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}