Skip to content

Commit

Permalink
Added php 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Jul 12, 2023
1 parent 8acf493 commit 6792f70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.1.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^7.0 || ^8.0"
},
"autoload": {
"files": [
Expand Down
3 changes: 3 additions & 0 deletions src/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
*/
class Page
{
/** @var array */
protected $settings;

/**
* Create a new page instance.
*
Expand Down

0 comments on commit 6792f70

Please sign in to comment.