From a8f6cb74191aa708e1509f184f7ccb52487a00ef Mon Sep 17 00:00:00 2001 From: Tim Brook Date: Tue, 14 Feb 2023 15:03:13 -0600 Subject: [PATCH] Add Laravel 10 support (#72) * Add Laravel 10 support * Add php 8.1 to git workflow. Remove 7.3 and 7.4. --- .github/workflows/phpunit.yml | 2 +- composer.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index e019c26..07aa934 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '7.4', '7.3'] + php: ['8.1', '8.0'] name: P${{ matrix.php }} diff --git a/composer.json b/composer.json index adab452..8234aa0 100644 --- a/composer.json +++ b/composer.json @@ -23,11 +23,11 @@ "issues": "https://github.com/area17/blast/issues/" }, "require": { - "php": "^7.3|^8.0", + "php": "^7.3|^8.0|^8.1", "ext-json": "*", - "illuminate/filesystem": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0", - "illuminate/view": "^7.0|^8.0|^9.0" + "illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/view": "^7.0|^8.0|^9.0|^10.0" }, "require-dev": { "orchestra/testbench": "^6.21|^7.0"