-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
92 lines (92 loc) · 2.74 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
85
86
87
88
89
90
91
92
{
"name": "php-open-source-saver/jwt-auth",
"description": "JSON Web Token Authentication for Laravel and Lumen",
"keywords": [
"auth",
"authentication",
"json web token",
"jwt",
"laravel"
],
"homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
"support": {
"issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
"source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
},
"license": "MIT",
"authors": [
{
"name": "Sean Tymon",
"email": "[email protected]",
"homepage": "https://tymon.xyz",
"role": "Forked package creator | Developer"
},
{
"name": "Eric Schricker",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Fabio William Conceição",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/auth": "^10|^11",
"illuminate/contracts": "^10|^11",
"illuminate/http": "^10|^11",
"illuminate/support": "^10|^11",
"lcobucci/jwt": "^5.0",
"namshi/jose": "^7.0",
"nesbot/carbon": "^2.0|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"illuminate/console": "^10|^11",
"illuminate/routing": "^10|^11",
"orchestra/testbench": "^8|^9",
"mockery/mockery": "^1.4.4",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10.5|^11"
},
"autoload": {
"psr-4": {
"PHPOpenSourceSaver\\JWTAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPOpenSourceSaver\\JWTAuth\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.0-dev"
},
"laravel": {
"aliases": {
"JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
"JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
},
"providers": [
"PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
]
}
},
"funding": [],
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --diff",
"test": "phpunit --colors=always",
"test:ci": "composer test -- --coverage-text --coverage-clover=coverage.xml",
"phpstan": "phpstan analyse --memory-limit=256M",
"phpstan-baseline": "phpstan analyse --generate-baseline --memory-limit=256M"
}
}