-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
69 lines (69 loc) · 1.81 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
{
"name": "benbjurstrom/cognito-jwt-guard",
"description": "A laravel auth guard for JSON Web Tokens issued by Amazon AWS Cognito",
"type": "laravel",
"keywords": [
"cognito",
"jwt",
"guard",
"laravel",
"amazon aws",
"api",
"auth",
"authentication",
"json web token",
"jwks"
],
"homepage": "https://github.com/benbjurstrom/cognito-jwt-guard",
"support": {
"issues": "https://github.com/benbjurstrom/cognito-jwt-guard/issues",
"source": "https://github.com/benbjurstrom/cognito-jwt-guard"
},
"license": "MIT",
"authors": [
{
"name": "Ben Bjurstrom",
"email": "[email protected]",
"homepage": "https://benbjurstrom.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"illuminate/auth": "^8",
"illuminate/contracts": "^8",
"illuminate/http": "^8.46",
"illuminate/support": "^8",
"firebase/php-jwt": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.0",
"php-coveralls/php-coveralls": "^2.4",
"phpseclib/phpseclib": "~3.0"
},
"autoload": {
"psr-4": {
"BenBjurstrom\\CognitoGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BenBjurstrom\\CognitoGuard\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"BenBjurstrom\\CognitoGuard\\CognitoServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit --testsuite Unit",
"coveralls": "vendor/bin/php-coveralls -v"
},
"minimum-stability": "dev",
"prefer-stable": true
}