Files
authentication_provider_oidc/composer.json
T
Sebastian 05cdfefb4c
Build Test / test (pull_request) Successful in 52s
JS Unit Tests / test (pull_request) Successful in 50s
PHP Unit Tests / test (pull_request) Successful in 1m21s
PHP Integration Tests / Integration Tests (pull_request) Failing after 2m24s
Update dependency phpunit/phpunit to v13
2026-07-26 03:02:24 +00: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": "^13.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"
}
}