From ed8699c60557110780505103177089df8d7e1d72 Mon Sep 17 00:00:00 2001 From: John Koster Date: Thu, 17 Oct 2024 09:53:33 -0500 Subject: [PATCH] Tweaks --- .github/workflows/tests.yml | 5 ++++- composer.json | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cd5a309..6a37f46 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,10 +13,13 @@ jobs: strategy: matrix: - php: [8.2, 8.3] + php: [8.1, 8.2, 8.3] laravel: [9.*, 10.*, 11.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 5335ca3..9642bc0 100644 --- a/composer.json +++ b/composer.json @@ -11,14 +11,14 @@ } }, "require": { - "php": "^8.2.0", + "php": "^8.1.0", "laravel/framework": "^9.36 || ^10.0 || ^11.0" }, "require-dev": { "orchestra/testbench": "*", "laravel/pint": "^1.4", "brianium/paratest": "*", - "pestphp/pest": "^3.3" + "pestphp/pest": "^2" }, "minimum-stability": "dev", "prefer-stable": true,