From 4313fa5fb7dbe95267bd5b6aebb4d2cdf657f43c Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Wed, 2 Dec 2020 09:18:43 -0800 Subject: [PATCH 1/3] Allow running under PHP 8. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d53a49d..8e5319e 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ } ], "require": { - "php": "^7.2.5", + "php": ">=7.2.5", "laravel/ui": "^3.0", "illuminate/support": "^8.0" }, From 5b6b219793a00dbdce072fd9271b7cfdcdf07d43 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Wed, 2 Dec 2020 09:52:06 -0800 Subject: [PATCH 2/3] Fixed PHP version constraint. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8e5319e..a00a0e9 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ } ], "require": { - "php": ">=7.2.5", + "php": "^7.2.5|^8.0", "laravel/ui": "^3.0", "illuminate/support": "^8.0" }, From 23321ecbc9c4d94e2f6eb0e088fd7b5db6b73ab4 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Wed, 2 Dec 2020 09:53:00 -0800 Subject: [PATCH 3/3] Added PHP 8 to test matrix. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ed9e29..c5a32a6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4] + php: [7.3, 7.4, 8.0] laravel: [^8.0] name: P${{ matrix.php }} - L${{ matrix.laravel }} steps: