Files
authentication_provider_pas…/composer.json
T
Sebastian 932fc8d094
Build Test / test (pull_request) Successful in 35s
JS Unit Tests / test (pull_request) Successful in 30s
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m32s
PHP Unit Tests / test (pull_request) Successful in 1m49s
chore(deps): update dependency phpunit/phpunit to v13
2026-07-28 03:04:39 +00:00

26 lines
711 B
JSON

{
"name": "ktrix/authentication-provider-password",
"description": "Ktrix password authentication provider",
"type": "project",
"autoload": {
"psr-4": {
"KTXM\\AuthenticationProviderPassword\\": "lib/"
}
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"autoload-dev": {
"psr-4": {
"KTXT\\AuthenticationProviderPassword\\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"
}
}