diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 92072ce..5bc17dd 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.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..cc3a21a 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, PHP 8.2 and PHP 8.3 support + ## 6.1.0 - 2025-03-12 ### Added diff --git a/composer.json b/composer.json index def0ab4..1ec690c 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,8 @@ } ], "require": { - "php": "^8.2|^8.3|^8.4", - "illuminate/contracts": "^11.0|^12.0", + "php": "^8.4|^8.5", + "illuminate/contracts": "^12.0|^13.0", "laravel/slack-notification-channel": "^3.2", "ext-json": "*" }, @@ -26,7 +26,7 @@ "friendsofphp/php-cs-fixer": "^3.2", "laravel/sanctum": "^4.0|^5.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" },