Skip to content

Commit

Permalink
added support php 8.3|8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pvsaintpe committed May 2, 2024
1 parent 2e10031 commit 0cd4463
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
}
],
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2",
"php": "^8.3|^8.4",
"ext-json": "*",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.9",
"hemp/presenter": "^2.0|^3.0"
"laravel/framework": "^11.9",
"hemp/presenter": "^3.0"
},
"require-dev": {
"umbrellio/code-style-php": "^1.0",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"orchestra/testbench": "^9.0",
"symplify/easy-coding-standard": "^9.3.15",
"php-coveralls/php-coveralls": "^2.1"
},
Expand Down
3 changes: 3 additions & 0 deletions src/Contracts/AbstractPresenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
use Illuminate\Contracts\Queue\QueueableEntity;
use JsonSerializable;

/**
* @codeCoverageIgnore
*/
class AbstractPresenter extends Presenter implements JsonSerializable, QueueableEntity
{
private $relationMapping = [];
Expand Down

0 comments on commit 0cd4463

Please sign in to comment.