forked from robsontenorio/laravel-keycloak-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.01 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
{
"name": "robsontenorio/laravel-keycloak-guard",
"description": "🔑 Simple Keycloak Guard for Laravel",
"keywords": [
"laravel",
"keycloak"
],
"homepage": "https://github.com/robsontenorio/laravel-keycloak-guard",
"license": "MIT",
"authors": [
{
"name": "Robson Tenório"
}
],
"minimum-stability": "dev",
"require": {
"firebase/php-jwt": "^5.0"
},
"autoload": {
"psr-4": {
"KeycloakGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KeycloakGuard\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"KeycloakGuard\\KeycloakGuardServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^7.3@dev",
"orchestra/testbench": "^3.7@dev"
}
}