-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
62 lines (62 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "agungsugiarto/codeigniter4-authentication-jwt",
"description": "JSON Web Token for codeigniter4 authentication.",
"keywords": [
"codeigniter4",
"authentication",
"auth",
"jwt",
"json web token"
],
"license": "MIT",
"authors": [
{
"name": "Sean Tymon",
"email": "[email protected]",
"homepage": "https://tymon.xyz",
"role": "Developer"
},
{
"name": "Agung Sugiarto",
"email": "[email protected]",
"homepage": "https://agungsugiarto.github.io",
"role": "Developer"
}
],
"require": {
"agungsugiarto/codeigniter4-authentication": "^1.0|^2.0",
"codeigniter4/framework": "^4.1",
"php": "^7.3|^8.0",
"lcobucci/jwt": "<3.4",
"nesbot/carbon": "^2.0",
"tightenco/collect": "^8.19"
},
"require-dev": {
"mockery/mockery": ">=0.9.9",
"phpunit/phpunit": "^8.5|^9.4",
"yoast/phpunit-polyfills": "^0.2.0"
},
"autoload": {
"psr-4": {
"Fluent\\JWTAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fluent\\JWTAuth\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"provide": {
"codeigniter4/authentication-implementation": "1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit --color=always"
}
}