Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Add to Satis
Browse files Browse the repository at this point in the history
  • Loading branch information
angelomelonas committed Jan 30, 2024
1 parent 406b64c commit f82431f
Showing 1 changed file with 58 additions and 58 deletions.
116 changes: 58 additions & 58 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
{
"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"
},
"require-dev": {
"phpmetrics/phpmetrics": "^2.7",
"phpstan/phpstan": "^1.10",
"symplify/easy-coding-standard": "^11.1",
"ramsey/uuid": "^4.7",
"phpunit/phpunit": "^10"
},
"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"
],
"ecs": "vendor/bin/ecs check",
"ecs:fix": "vendor/bin/ecs check --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",
"ecs": "Run ECS",
"ecs:fix": "Fix ECS errors",
"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)"
"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"
},
"require-dev": {
"phpmetrics/phpmetrics": "^2.7",
"phpstan/phpstan": "^1.10",
"symplify/easy-coding-standard": "^11.1",
"ramsey/uuid": "^4.7",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Fschmtt\\Keycloak\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fschmtt\\Keycloak\\Test\\": "tests"
}
},
"license": "mit",
"repositories": [
{
"type": "composer",
"url": "https://satis.castoredc.net/"
}
],
"scripts": {
"analyze": [
"@phpstan",
"@psalm"
],
"ecs": "vendor/bin/ecs check",
"ecs:fix": "vendor/bin/ecs check --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",
"ecs": "Run ECS",
"ecs:fix": "Fix ECS errors",
"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)"
}
}

0 comments on commit f82431f

Please sign in to comment.