From 6792f701fed5425d0aa0157779eb8d6a4f108d0e Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Wed, 12 Jul 2023 11:23:26 +0200 Subject: [PATCH] Added php 8 support --- composer.json | 4 ++-- src/Page.php | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 7a76d6ca..efbf4dd9 100644 --- a/composer.json +++ b/composer.json @@ -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": [ diff --git a/src/Page.php b/src/Page.php index 2169a303..40c718d3 100644 --- a/src/Page.php +++ b/src/Page.php @@ -22,6 +22,9 @@ */ class Page { + /** @var array */ + protected $settings; + /** * Create a new page instance. *