-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
65 lines (65 loc) · 1.96 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
{
"name": "fschmtt/keycloak-rest-api-client-php",
"description": "PHP client to interact with Keycloak's Admin REST API.",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"lcobucci/jwt": "^4.1 || ^5.2",
"symfony/serializer": "^6.4 || ^7.1",
"symfony/property-access": "^6.4 || ^7.1"
},
"require-dev": {
"phpmetrics/phpmetrics": "^2.7",
"phpstan/phpstan": "^1.10",
"ramsey/uuid": "^4.7",
"phpunit/phpunit": "^10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"vimeo/psalm": "^5.24",
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"Fschmtt\\Keycloak\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fschmtt\\Keycloak\\Test\\": "tests"
}
},
"license": "mit",
"authors": [
{
"name": "Frederik Schmitt",
"email": "frederik.schmitt96@gmail.com"
}
],
"scripts": {
"analyze": [
"@phpstan",
"@psalm"
],
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyze",
"psalm": "vendor/bin/psalm",
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "vendor/bin/phpunit --testsuite unit",
"test:integration": "vendor/bin/phpunit --testsuite integration"
},
"scripts-descriptions": {
"analyze": "Run phpstan and psalm analysis",
"cs": "Run PHP Coding Standard",
"cs:fix": "Fix PHP Coding Standard",
"phpstan": "Run phpstan",
"psalm": "Run psalm",
"test": "Run unit and integration tests",
"test:unit": "Run unit tests",
"test:integration": "Run integration tests (requires a fresh and running Keycloak instance)"
}
}