Files
authentication_provider_oidc/composer.json
Sebastian bf2def4fc9
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m13s
PHP Unit Tests / test (pull_request) Successful in 1m41s
chore: implement php test suites
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-23 22:20:36 -04:00

26 lines
728 B
JSON

{
"name": "ktrix/authentication-provider-oidc",
"description": "Ktrix OpenID Connect authentication provider for SSO authentication",
"type": "project",
"autoload": {
"psr-4": {
"KTXM\\AuthenticationProviderOidc\\": "lib/"
}
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"autoload-dev": {
"psr-4": {
"KTXT\\AuthenticationProviderOidc\\Tests\\": "tests/php/"
}
},
"scripts": {
"test:unit": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Unit Tests\" --colors=always --testdox",
"test:integration": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Integration Tests\" --colors=always --testdox"
}
}