diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eff148f..5d4908a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2, 8.1] + php: [8.5, 8.4, 8.3, 8.2, 8.1] dependency-version: [prefer-stable] os: [ubuntu-latest] diff --git a/CHANGELOG.md b/CHANGELOG.md index 30e37ac..cc37e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-reporto` will be documented in this file. +## 1.10 - 2026-04-06 +- Added support for PHP 8.5 +- Added support for Laravel 13 + ## 1.9 - 2025-03-22 - Added support for PHP 8.4 - Added support for Laravel 12 diff --git a/composer.json b/composer.json index 97eaaeb..6c138a4 100644 --- a/composer.json +++ b/composer.json @@ -24,11 +24,11 @@ "require": { "php": "^8.0", "ext-json": "*", - "laravel/framework": "^9.0|^10.0|^11.0|^12.0" + "laravel/framework": "^9.0|^10.0|^11.0|^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^8.0", - "phpunit/phpunit" : "^10.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "phpunit/phpunit" : "^10.0|^11.0|^12.0", "scrutinizer/ocular": "^1.9" }, "autoload": {