From 21c44d1ad357e1a009fa0aaf210f7efcdfec6bb4 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 22 Feb 2026 16:01:32 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 7cc1cd0..3ebec7f 100644 --- a/composer.json +++ b/composer.json @@ -19,15 +19,15 @@ "php": "^8.1", "ext-json": "*", "devizzent/cebe-php-openapi": "^1.0", - "laravel/framework": "^10.0 | ^11.0 | ^12.0", + "laravel/framework": "^10.0 | ^11.0 | ^12.0 | ^13.0", "opis/json-schema": "^2.3" }, "require-dev": { - "larastan/larastan": "^2.8|^3.0", + "larastan/larastan": "^2.8|^3.0 | dev-l13", "laravel/pint": "^1.13", "nunomaduro/collision": "^7.0|^8.0", - "orchestra/testbench": "^8.0|^9.0 | ^10.0", - "phpunit/phpunit": "^10.0|^11.0" + "orchestra/testbench": "^8.0|^9.0 | ^10.0 | ^11.0", + "phpunit/phpunit": "^10.0|^11.0 | ^12.5.12" }, "autoload": { "psr-4": { From 03c0c7a9f44ca41b70c90af398141d0f28162f7f Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 22 Feb 2026 16:01:33 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fd92346..d2c350a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,9 +15,9 @@ jobs: strategy: fail-fast: true matrix: - laravel: ['10.*', '11.*', '12.*'] + laravel: ['10.*', '11.*', '12.*', '13.*'] php: [8.1, 8.2, 8.3, 8.4] - phpunit: [ '10.*', '11.*'] + phpunit: ['10.*', '11.*'] include: - laravel: 10.* testbench: 8.* @@ -25,6 +25,8 @@ jobs: testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* exclude: - laravel: 10.* phpunit: 11.* @@ -36,6 +38,10 @@ jobs: php: 8.1 - laravel: 12.* phpunit: 10.* + - laravel: 13.* + php: 8.1 + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - PU${{ matrix.phpunit }}