-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 7 additions, 0 deletions.gitignore
- .gitlab-ci.yml 61 additions, 0 deletions.gitlab-ci.yml
- .php-cs-fixer.dist.php 26 additions, 0 deletions.php-cs-fixer.dist.php
- .renovaterc.json 25 additions, 0 deletions.renovaterc.json
- LICENSE 0 additions, 0 deletionsLICENSE
- README.md 3 additions, 0 deletionsREADME.md
- composer.json 63 additions, 0 deletionscomposer.json
- composer.lock 0 additions, 0 deletionscomposer.lock
- phpstan.neon 14 additions, 0 deletionsphpstan.neon
- phpunit.xml.dist 25 additions, 0 deletionsphpunit.xml.dist
- psalm.xml 16 additions, 0 deletionspsalm.xml
- src/DbpKeycloakBundle.php 15 additions, 0 deletionssrc/DbpKeycloakBundle.php
- src/DependencyInjection/DbpKeycloakExtension.php 15 additions, 0 deletionssrc/DependencyInjection/DbpKeycloakExtension.php
- tests/bootstrap.php 13 additions, 0 deletionstests/bootstrap.php
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.php-cs-fixer.dist.php
0 → 100644
.renovaterc.json
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "dbp/api-keycloak-bundle", | ||
"type": "symfony-bundle", | ||
"license": "AGPL-3.0-or-later", | ||
"require": { | ||
"php": "^7.3", | ||
"symfony/yaml": "^5.2", | ||
"symfony/framework-bundle": "^5.2", | ||
"web-token/jwt-easy": "^2.1", | ||
"web-token/jwt-signature-algorithm-rsa": "^2.1", | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^0.12.33", | ||
"phpstan/phpstan-phpunit": "^0.12.13", | ||
"symfony/phpunit-bridge": "^5.2", | ||
"vimeo/psalm": "^4.4" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"DBP\\API\\KeycloakBundle\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"DBP\\API\\KeycloakBundle\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.3" | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@php vendor/bin/simple-phpunit" | ||
], | ||
"phpstan": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/phpstan analyze --ansi" | ||
], | ||
"psalm": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/psalm" | ||
], | ||
"lint": [ | ||
"@composer run cs", | ||
"@composer run phpstan", | ||
"@composer run psalm" | ||
], | ||
"cs-fix": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix" | ||
], | ||
"cs": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" | ||
], | ||
"coverage": [ | ||
"@php -dxdebug.mode=coverage vendor/bin/simple-phpunit --coverage-html _coverage" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
phpstan.neon
0 → 100644
phpunit.xml.dist
0 → 100644
psalm.xml
0 → 100644
src/DbpKeycloakBundle.php
0 → 100644
tests/bootstrap.php
0 → 100644
Please register or sign in to comment