From 56a28eea99c286e1e125e8d4fffb3cef1b159a62 Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 27 Feb 2026 14:30:12 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index c66d078..f9c6aa5 100644 --- a/composer.json +++ b/composer.json @@ -30,16 +30,16 @@ "laragear/meta": "4.*", "bacon/bacon-qr-code": "3.*", "paragonie/constant_time_encoding": "3.*", - "illuminate/config": "11.*|12.*", - "illuminate/validation": "11.*|12.*", - "illuminate/database": "11.*|12.*", - "illuminate/support": "11.*|12.*", - "illuminate/http": "11.*|12.*", - "illuminate/auth": "11.*|12.*" + "illuminate/config": "11.*|12.*|^13.0", + "illuminate/validation": "11.*|12.*|^13.0", + "illuminate/database": "11.*|12.*|^13.0", + "illuminate/support": "11.*|12.*|^13.0", + "illuminate/http": "11.*|12.*|^13.0", + "illuminate/auth": "11.*|12.*|^13.0" }, "require-dev": { "laragear/meta-testing": "3.*", - "orchestra/testbench": "9.*|10.*" + "orchestra/testbench": "9.*|10.*|^11.0" }, "autoload": { "psr-4": { From c17c04fde48a891d13ffa02809cd042e7ab9e6e8 Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 27 Feb 2026 14:30:12 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/php.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 00deb84..1b8bba6 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -45,6 +45,7 @@ jobs: unit_tests: name: 2️⃣ Unit and Feature tests + needs: - byte_level - syntax_errors @@ -53,17 +54,14 @@ jobs: strategy: matrix: - php-version: - - 8.2 - - 8.3 - - 8.4 - laravel-constraint: - - 11.* - - 12.* - dependencies: [ lowest, highest ] + php-version: [8.2, 8.3, 8.4] + laravel-constraint: ['11.*', '12.*', '13.*'] + dependencies: [lowest, highest] exclude: - laravel-constraint: 12.* php-version: 8.2 + - laravel-constraint: 13.* + php-version: 8.2 steps: - name: Set up PHP @@ -93,6 +91,7 @@ jobs: static_analysis: name: 3️⃣ Static Analysis + needs: - byte_level - syntax_errors @@ -118,6 +117,7 @@ jobs: exported_files: name: 4️⃣ Exported files + needs: - byte_level - syntax_errors