diff --git a/README.md b/README.md index 7cc913c..2c7be5d 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,5 @@ Modul für eine 2-Faktor-Authentisierung (2FA) zum Login in Front- und Backend z - Validierung der Einmalpassworte und Generierung der QR-Codes werden ausschließlich innerhalb des Shops durchgeführt - keine Kommunikation nach außen nötig - statische Backupcodes ermöglichen auch eine (begrenzte) Anmeldung ohne Zugang zum Generierungstool + +- optionale Verpflichtung zur 2FA-Nutzung für Adminuser \ No newline at end of file diff --git a/composer.json b/composer.json index 00cf265..ee2b511 100644 --- a/composer.json +++ b/composer.json @@ -39,7 +39,7 @@ "require": { "php": ">=5.6", "ext-xmlwriter": "*", - "oxid-esales/oxideshop-ce": "6.2.1 - 6.12", + "oxid-esales/oxideshop-ce": "6.2.1 - 6.7", "spomky-labs/otphp": "^8.3", "bacon/bacon-qr-code": "^1.0 || ^2.0", "zendframework/zend-math": "^3.2" diff --git a/docs/daux/changelog/010_Changelog.md b/docs/daux/changelog/010_Changelog.md index f395cf1..9ef245d 100644 --- a/docs/daux/changelog/010_Changelog.md +++ b/docs/daux/changelog/010_Changelog.md @@ -2,6 +2,11 @@ title: Changelog --- +## 1.1.0.0 (2022-09-30) + +### +- optionale Verpflichtung zur 2FA-Nutzung für Adminbenutzer + ## 1.0.0.0 (2019-08-19) ### Added diff --git a/docs/daux/config.json b/docs/daux/config.json index d18468e..16fc032 100644 --- a/docs/daux/config.json +++ b/docs/daux/config.json @@ -1,9 +1,9 @@ { "title": " 2-Faktor-Authentisierung", - "moduleversion": "1.0.0.0", + "moduleversion": "1.1.0.0", "titledesc": "für den Oxid eShop", "author": "D³ Data Development", - "moduledate": "19.08.2019", + "moduledate": "30.09.2022", "editors": "DS", "tagline": "", "image": "", diff --git a/src/metadata.php b/src/metadata.php index 04e0b2d..0cd2e30 100644 --- a/src/metadata.php +++ b/src/metadata.php @@ -60,7 +60,7 @@ $aModule = [ 'en' => 'Two-factor authentication (TOTP) for OXID eSales shop', ], 'thumbnail' => 'picture.png', - 'version' => '1.0.0.0', + 'version' => '1.1.0.0', 'author' => 'D³ Data Development (Inh.: Thomas Dartsch)', 'email' => 'support@shopmodule.com', 'url' => 'http://www.oxidmodule.com/',