Skip to content

Commit 3ed6c6a

Browse files
committed
removed 8.2 support
Signed-off-by: bota <Bota@dotkernel.com>
1 parent 31d049d commit 3ed6c6a

4 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.2"
1918
- "8.3"
2019
- "8.4"
2120
- "8.5"

.github/workflows/static-analysis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.2"
1918
- "8.3"
2019
- "8.4"
2120
- "8.5"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ composer require dotkernel/dot-totp
2626
> **Note:** These instructions are written in the style of Mezzio middleware configuration and assume the use of Doctrine ORM.
2727
> They can be adapted to any database layer or configuration style. If you are using a different framework or service container, follow the same logical steps while adjusting the syntax and configuration to match your environment.
2828
29-
3029
Create a new file configuration `config/autoload/totp.global.php`.
3130

3231
```php
@@ -96,6 +95,7 @@ trait TotpTrait
9695
To enable TOTP, generate a temporary secret and encode it into a QR code, which the user scans with an authenticator app (e.g., Google Authenticator, Authy). The user then confirms by providing a one-time code from the app.
9796

9897
**Steps:**
98+
9999
1. Generate a temporary Base32 secret.
100100
2. Build a provisioning URI with a label and issuer.
101101
3. Render the URI as a QR code.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424

2525
"require": {
26-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
26+
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
2727
"endroid/qr-code": "^6.0.9",
2828
"psr/container": "^1.1 || ^2.0.0"
2929
},

0 commit comments

Comments
 (0)