Skip to content

Commit 00623e2

Browse files
authored
Merge pull request #101 from samsonasik/bump-php
Bump requirement to PHP 8.2
2 parents 3d45bf1 + 3f94dc1 commit 00623e2

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/ci_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-versions: ['8.1', '8.2', '8.3', '8.4']
16+
php-versions: ['8.2', '8.3', '8.4']
1717
steps:
1818
- name: Setup PHP Action
1919
uses: shivammathur/setup-php@v2

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ ErrorHeroModule
77
[![PHPStan](https://img.shields.io/badge/style-level%20max-brightgreen.svg?style=flat-square&label=phpstan)](https://github.com/phpstan/phpstan)
88
[![Downloads](https://poser.pugx.org/samsonasik/error-hero-module/downloads)](https://packagist.org/packages/samsonasik/error-hero-module)
99

10-
> This is README for version ^5.0 which only support Laminas Mvc version 3 and Mezzio version 3 with php ^8.1.
10+
> This is README for version ^6.0 which only support Laminas Mvc version 3 and Mezzio version 3 with php ^8.2.
11+
12+
> For version ^5.0, you can read at [version 5 readme](https://github.com/samsonasik/ErrorHeroModule/tree/5.x.x) which only support Laminas Mvc version 3 and Mezzio version 3 with php ^8.1.
1113
1214
> For version ^4.0, you can read at [version 4 readme](https://github.com/samsonasik/ErrorHeroModule/tree/4.x.x) which only support Laminas Mvc version 3 and Mezzio version 3 with php ^8.0.
1315

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
],
3737
"require": {
38-
"php": "^8.1",
38+
"php": "^8.2",
3939
"laminas/laminas-db": "^2.20.0",
4040
"laminas/laminas-diactoros": "^2.26",
4141
"laminas/laminas-log": "^2.17.1",

src/Handler/Writer/Checker/Db.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use function date;
1313
use function strtotime;
1414

15-
final class Db
15+
final readonly class Db
1616
{
1717
/** @var string */
1818
private const OPTIONS = 'options';
@@ -24,9 +24,9 @@ final class Db
2424
private const EXTRA = 'extra';
2525

2626
public function __construct(
27-
private readonly DbWriter $dbWriter,
28-
private readonly array $configLoggingSettings,
29-
private readonly array $logWritersConfig
27+
private DbWriter $dbWriter,
28+
private array $configLoggingSettings,
29+
private array $logWritersConfig
3030
) {
3131
}
3232

0 commit comments

Comments
 (0)