From d4a882d2568b81d5b957f566b57e7fca6f87cbb7 Mon Sep 17 00:00:00 2001 From: Eduard Lupacescu Date: Mon, 30 Mar 2026 19:27:06 +0300 Subject: [PATCH 1/2] feat: Add Laravel 13 and PHP 8.5 support, drop Laravel 11 and PHP 8.2 - Update composer.json constraints for PHP ^8.3|^8.4|^8.5 - Update illuminate/contracts to ^12.0|^13.0 - Update orchestra/testbench to ^10.0|^11.0 - Update laravel/sanctum to ^5.0|^6.0 - Update CI matrix to test PHP 8.3/8.4/8.5 with Laravel 12/13 - Add CHANGELOG entry for 7.0.0 --- .github/workflows/run-tests.yml | 8 ++++---- CHANGELOG.md | 10 ++++++++++ composer.json | 8 ++++---- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 92072ce..f2920fc 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,14 +9,14 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.2, 8.3, 8.4] - laravel: [11.*, 12.*] + php: [8.3, 8.4, 8.5] + laravel: [12.*, 13.*] stability: [prefer-stable] include: - - laravel: 11.* - testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 66a3950..1091f79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to `laravel-developer` will be documented in this file +## 7.0.0 - 2026-03-30 + +### Added + +- Support for Laravel 13 and PHP 8.5 + +### Removed + +- Dropped Laravel 11 and PHP 8.2 support + ## 6.1.0 - 2025-03-12 ### Added diff --git a/composer.json b/composer.json index def0ab4..fb41712 100644 --- a/composer.json +++ b/composer.json @@ -16,17 +16,17 @@ } ], "require": { - "php": "^8.2|^8.3|^8.4", - "illuminate/contracts": "^11.0|^12.0", + "php": "^8.3|^8.4|^8.5", + "illuminate/contracts": "^12.0|^13.0", "laravel/slack-notification-channel": "^3.2", "ext-json": "*" }, "require-dev": { "brianium/paratest": "^7.0.6", "friendsofphp/php-cs-fixer": "^3.2", - "laravel/sanctum": "^4.0|^5.0", + "laravel/sanctum": "^5.0|^6.0", "nunomaduro/collision": "^8.1", - "orchestra/testbench": "^9.0|^10.0", + "orchestra/testbench": "^10.0|^11.0", "phpunit/phpunit": "^10.0|^11.0|^12.0", "symfony/stopwatch": "^4.4|^5.0|^6.0|^7.0" }, From f2d07011ff35df26f4a2dac258bd4287bf166697 Mon Sep 17 00:00:00 2001 From: Eduard Lupacescu Date: Mon, 30 Mar 2026 19:41:01 +0300 Subject: [PATCH 2/2] feat: Drop PHP 8.3 support, require PHP 8.4+ --- .github/workflows/run-tests.yml | 2 +- CHANGELOG.md | 2 +- composer.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f2920fc..5bc17dd 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.3, 8.4, 8.5] + php: [8.4, 8.5] laravel: [12.*, 13.*] stability: [prefer-stable] include: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1091f79..cc3a21a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ All notable changes to `laravel-developer` will be documented in this file ### Removed -- Dropped Laravel 11 and PHP 8.2 support +- Dropped Laravel 11, PHP 8.2 and PHP 8.3 support ## 6.1.0 - 2025-03-12 diff --git a/composer.json b/composer.json index fb41712..1ec690c 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.3|^8.4|^8.5", + "php": "^8.4|^8.5", "illuminate/contracts": "^12.0|^13.0", "laravel/slack-notification-channel": "^3.2", "ext-json": "*" @@ -24,7 +24,7 @@ "require-dev": { "brianium/paratest": "^7.0.6", "friendsofphp/php-cs-fixer": "^3.2", - "laravel/sanctum": "^5.0|^6.0", + "laravel/sanctum": "^4.0|^5.0", "nunomaduro/collision": "^8.1", "orchestra/testbench": "^10.0|^11.0", "phpunit/phpunit": "^10.0|^11.0|^12.0",