Skip to content

Commit

Permalink
support for PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Sep 6, 2022
1 parent 9d5d430 commit b617373
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']

fail-fast: false

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Install Dibi via Composer:
composer require dibi/dibi
```

The Dibi 4.2 requires PHP version 7.2 and supports PHP up to 8.1.
The Dibi 4.2 requires PHP version 7.2 and supports PHP up to 8.2.


Usage
Expand Down
1 change: 1 addition & 0 deletions src/Dibi/HashMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* Lazy cached storage.
* @internal
*/
#[\AllowDynamicProperties]
abstract class HashMapBase
{
/** @var callable */
Expand Down
1 change: 1 addition & 0 deletions src/Dibi/Row.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/**
* Result set single row.
*/
#[\AllowDynamicProperties]
class Row implements \ArrayAccess, \IteratorAggregate, \Countable
{
public function __construct(array $arr)
Expand Down

0 comments on commit b617373

Please sign in to comment.