From 76a0a3ebcae3f6d5b8e5008306687f4abe927eb8 Mon Sep 17 00:00:00 2001 From: Leandro Banchio Date: Mon, 30 Mar 2026 15:56:38 -0300 Subject: [PATCH] feat: Add support for L13 fix: bump illuminate/database --- .github/workflows/run-tests.yml | 18 ++++++++---------- composer.json | 10 +++++----- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 646138b..186f77d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,29 +12,27 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.2, 8.1, 8.0] - laravel: ['9.*', '10.*', '11.*', '12.*'] + php: [8.5, 8.4, 8.3, 8.2, 8.1] + laravel: ['10.*', '11.*', '12.*', '13.*'] dependency-version: [prefer-stable] include: - laravel: 10.* testbench: 8.* - - laravel: 9.* - testbench: 7.* - laravel: 11.* testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* exclude: - - laravel: 10.* - php: 8.0 - laravel: 11.* php: 8.1 - - laravel: 11.* - php: 8.0 - laravel: 12.* php: 8.1 - - laravel: 12.* - php: 8.0 + - laravel: 13.* + php: 8.1 + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index dcd3582..4c4208b 100644 --- a/composer.json +++ b/composer.json @@ -24,13 +24,13 @@ "minimum-stability": "dev", "prefer-stable": true, "require": { - "php": "^8.0", - "laravel/framework": "^9.0|^10.0|^11.0|^12.0" + "php": "^8.1", + "laravel/framework": "^10.0|^11.0|^12.0" }, "require-dev": { - "mockery/mockery": "^1.5.1", - "illuminate/database": "^9.0|^10.0|^11.0|^12.0", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "mockery/mockery": "^1.6.12", + "illuminate/database": "^10.0|^11.0|^12.0|^13.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", "doctrine/dbal": "^2.10|^3.5|^4.2" }, "config": {