From 722c1f140b1f722108a1138dda351570dd2ad5eb Mon Sep 17 00:00:00 2001 From: Harry Gulliford Date: Wed, 16 Oct 2024 17:36:17 +1100 Subject: [PATCH] Add back support for Laravel 10 --- .github/workflows/tests.yml | 4 +++- composer.json | 10 +++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 940a19a..c49ce86 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,12 +10,14 @@ jobs: matrix: os: [ubuntu-latest] php: [8.3, 8.2] - laravel: [11.*] + laravel: [11.*, 10.*] stability: [prefer-lowest, prefer-stable] firebird: [v5.0, v4.0, v3.0, v2.5.9-sc] include: - laravel: 11.* testbench: ^9.0 + - laravel: 10.* + testbench: ^8.0 fail-fast: false name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, Firebird ${{ matrix.firebird }}, ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 5cce0e3..3cf4821 100644 --- a/composer.json +++ b/composer.json @@ -4,15 +4,15 @@ "license": "MIT", "require": { "php": "^8.2", - "illuminate/support": "^11.0", - "illuminate/container": "^11.0", - "illuminate/database": "^11.0", - "illuminate/events": "^11.0" + "illuminate/support": "^10.34|^11.0", + "illuminate/container": "^10.34|^11.0", + "illuminate/database": "^10.34|^11.0", + "illuminate/events": "^10.34|^11.0" }, "require-dev": { "mockery/mockery": "^1.6", "phpunit/phpunit": "^11.1", - "orchestra/testbench": "^9.0", + "orchestra/testbench": "^8.0|^9.0", "fakerphp/faker": "^1.23" }, "archive": {