oxtotp/composer.json

74 lines
1.7 KiB
JSON
Raw Normal View History

2020-05-25 10:26:00 +02:00
{
2023-01-26 00:12:47 +01:00
"name": "d3/oxid-twofactor-onetimepassword",
2020-05-25 10:26:00 +02:00
"description": "Two-factor authentication via time-based one-time password for OXID eSales shop",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"d3",
2023-01-26 00:12:47 +01:00
"2FA",
"two factor",
"second factor",
"TOTP",
"OTP",
"one-time password",
"authenticator"
2020-05-25 10:26:00 +02:00
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
2020-06-08 10:15:40 +02:00
"homepage": "https://www.d3data.de",
2020-05-25 10:26:00 +02:00
"role": "Owner"
},
{
"name": "Tobi Matthaiou",
"email": "tm@loberon.com",
"homepage": "http://www.loberon.de",
"role": "Contributor"
2020-05-25 10:26:00 +02:00
}
],
"support": {
"email": "support@shopmodule.com"
},
"homepage": "https://www.oxidmodule.com/",
"license": [
"GPL-3.0-only"
],
"extra": {
"oxideshop": {
"source-directory": "/src",
"target-directory": "d3/totp"
}
},
"require": {
"php": ">=7.2",
"ext-xmlwriter": "*",
2022-09-26 15:57:45 +02:00
"ext-openssl": "*",
"oxid-esales/oxideshop-ce": "6.8.0 - 6.14",
"spomky-labs/otphp": "^10.0 || ^11.0",
"bacon/bacon-qr-code": "^2.0",
2022-11-10 16:45:57 +01:00
"laminas/laminas-math": "^3.2",
"d3/testingtools": "^1.0"
2020-05-25 10:26:00 +02:00
},
2022-09-30 21:06:30 +02:00
"require-dev": {
2022-10-01 14:44:36 +02:00
"friendsofphp/php-cs-fixer": "^2.19",
"phpstan/phpstan": "^1.8"
2022-09-30 21:06:30 +02:00
},
2020-05-25 10:26:00 +02:00
"autoload": {
"psr-4": {
"D3\\Totp\\": "../../../source/modules/d3/totp"
}
2022-11-25 15:42:33 +01:00
},
"scripts": {
"totp_phpstan": "./vendor/bin/phpstan -c./vendor/d3/oxtotp/phpstan.neon"
2023-01-26 00:12:47 +01:00
},
"suggest": {
"d3/oxid-twofactor-passwordless": "Passwordless login with FIDO2 hardware token."
},
"replace": {
"d3/oxtotp": "*"
2020-05-25 10:26:00 +02:00
}
}