-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.4 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.4 KB
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
{
"name": "mainick/keycloak-client-bundle",
"type": "symfony-bundle",
"description": "Keycloak client bundle for Symfony, designed to simplify Keycloak integration into your application and provide additional functionality for token management and user information access",
"license": "MIT",
"keywords": [
"keycloak-client",
"jwt-token",
"oauth2-keycloak"
],
"require": {
"php": ">=8.4",
"stevenmaguire/oauth2-keycloak": "^6.1",
"symfony/routing": "^6.4 || ^7.4 || ^8.0",
"symfony/security-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/serializer-pack": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Mainick\\KeycloakClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mainick\\KeycloakClientBundle\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --dry-run --diff --ansi --verbose --allow-risky=no",
"lint-fix": "php-cs-fixer fix",
"types": "phpstan analyse --ansi --memory-limit=256M",
"test": "phpunit --testdox --colors=always"
},
"authors": [
{
"name": "Maico Orazio",
"email": "maico.orazio@gmail.com",
"homepage": "https://github.com/mainick"
}
]
}