This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "mathrix-education/lumen-jwt",
"description": "A small library to handle authentication using JWT.",
"version": "3.0.0-alpha.7",
"type": "library",
"keywords": [
"mathrix",
"php",
"lumen",
"jwt",
"authentication"
],
"homepage": "https://github.com/mathrix-education/lumen-jwt-auth",
"license": "MIT",
"authors": [
{
"name": "Mathieu Bour",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/mathieu-bour",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mathrix-education/lumen-jwt-auth/issues",
"wiki": "https://github.com/mathrix-education/lumen-jwt-auth/wiki",
"source": "https://github.com/mathrix-education/lumen-jwt-auth",
"docs": "https://github.com/mathrix-education/lumen-jwt-auth/wiki"
},
"require": {
"php": "^7.2.5",
"ext-json": "*",
"illuminate/auth": "^6.0 || ^7.0",
"illuminate/database": "^6.0 || ^7.0",
"illuminate/http": "^6.0 || ^7.0",
"illuminate/support": "^6.0 || ^7.0",
"psr/log": "^1.1",
"ramsey/uuid": "^3.8",
"web-token/jwt-checker": "^2.1",
"web-token/jwt-core": "^2.1",
"web-token/jwt-key-mgmt": "^2.1"
},
"require-dev": {
"laravel/lumen-framework": "^6.0 || ^7.0",
"mathrix-education/coding-standard": "0.9.1",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.0 || ^9.0",
"web-token/jwt-signature-algorithm-ecdsa": "^2.1",
"web-token/jwt-signature-algorithm-eddsa": "^2.1",
"web-token/jwt-signature-algorithm-hmac": "^2.1",
"web-token/jwt-signature-algorithm-rsa": "^2.1"
},
"suggest": {
"web-token/jwt-signature-algorithm-ecdsa": "Sign tokens using Elliptic Curves.",
"web-token/jwt-signature-algorithm-eddsa": "Sign tokens using Edwards-curve.",
"web-token/jwt-signature-algorithm-hmac": "Sign tokens using HMAC.",
"web-token/jwt-signature-algorithm-rsa": "Sign tokens using RSA."
},
"autoload": {
"psr-4": {
"Mathrix\\Lumen\\JWT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sandbox\\": "sandbox/app/",
"Mathrix\\Lumen\\JWT\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"test": "phpunit",
"test:cover": "phpunit --log-junit=storage/artifacts/phpunit-junit.xml --coverage-clover=storage/artifacts/phpunit-coverage.xml --coverage-text",
"lint": "phpcs --report=source",
"lint:details": "phpcs",
"lint:fix": "phpcbf"
}
}