webauthn/composer.json

68 lignes
1.6 KiB
JSON
Brut Lien permanent Vue normale Historique

2022-10-24 22:24:40 +02:00
{
2023-01-25 22:04:29 +01:00
"name": "d3/oxid-twofactor-passwordless",
"description": "Passwordless login for OXID eShop (Webauthn / FIDO2 based)",
2022-10-24 22:24:40 +02:00
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"d3",
"webauthn",
"FIDO2",
"CTAP",
2023-01-25 22:04:29 +01:00
"public key",
"2FA",
"two factor",
"second factor",
"passwordless",
"token",
"yubikey",
"solokey",
2023-02-17 00:38:22 +01:00
"credential",
2023-05-26 09:33:54 +02:00
"login",
"passkey"
2022-10-24 22:24:40 +02:00
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
"homepage": "https://www.oxidmodule.com/",
"license": [
"GPL-3.0-or-later"
],
"extra": {
"oxideshop": {
"source-directory": "/src",
"target-directory": "d3/oxwebauthn"
}
},
"require": {
2022-11-01 10:35:27 +01:00
"php": ">=7.4",
2023-05-26 09:33:54 +02:00
"oxid-esales/oxideshop-ce": "6.8 - 6.14",
2022-10-24 22:24:40 +02:00
"web-auth/webauthn-lib": "^3.3",
2022-10-27 14:51:12 +02:00
"nyholm/psr7": "^1.5.1",
"nyholm/psr7-server": "^1.0.2",
2022-12-18 00:04:06 +01:00
"ext-json": "*",
2023-01-21 13:50:18 +01:00
"d3/testingtools": "^1.1",
"d3/oxid-dic-handler": "^1.0",
"beberlei/assert": "^3.2"
2022-10-24 22:24:40 +02:00
},
2022-12-12 23:41:07 +01:00
"require-dev": {
2022-12-13 22:24:33 +01:00
"friendsofphp/php-cs-fixer": "^2.19",
2022-12-12 23:41:07 +01:00
"phpstan/phpstan": "^1.8"
},
2022-10-24 22:24:40 +02:00
"autoload": {
"psr-4": {
2023-02-10 00:52:44 +01:00
"D3\\Webauthn\\": "../../../source/modules/d3/oxwebauthn",
"D3\\Webauthn\\Migrations\\": "../../../source/modules/d3/oxwebauthn/migration/data"
2022-10-24 22:24:40 +02:00
}
2023-01-25 22:04:29 +01:00
},
"suggest": {
"d3/oxid-twofactor-onetimepassword": "Registrations can be supplemented with time-based one-time passwords as a second factor."
2022-10-24 22:24:40 +02:00
}
}