From 03c20b1ec80d4cdb41b74469783af3cdec5389fd Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 14:15:43 +0100 Subject: [PATCH] Remove PHP 8.0 --- .github/workflows/ci.yml | 8 ++------ composer.json | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9836764..ba7aad3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,18 +16,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - include: - - laravel: 9 - php: 8.0 - - laravel: 10 - php: 8.1 + - laravel: [9, 10] steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{matrix.php}} + php-version: '8.1' - name: Install composer dependencies run: composer require "illuminate/support:^${{ matrix.laravel }}.0" - name: Run tests diff --git a/composer.json b/composer.json index 02e56ba..42e5035 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ } }, "require": { - "php": "^8.0", + "php": "^8.1", "illuminate/support": "^9.0|^10.0", "archtechx/helpers": "^0.3.1" },