-
Notifications
You must be signed in to change notification settings - Fork 141
/
composer.json
58 lines (58 loc) · 1.46 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
{
"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",
"prefer-stable": true,
"require": {
"firebase/php-jwt": "^6.3",
"php": "^8.0",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"KeycloakGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KeycloakGuard\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:coverage": "php -d pcov.enabled=1 ./vendor/bin/pest --coverage --coverage-clover=.coverage/clover.xml --coverage-html=.coverage",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"laravel": {
"providers": [
"KeycloakGuard\\KeycloakGuardServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.7",
"friendsofphp/php-cs-fixer": "^3.10",
"nunomaduro/collision": "^6.3",
"pestphp/pest": "^1.22"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}