diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 97ae3f8..b9819ff 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -8,12 +8,17 @@ jobs: strategy: matrix: php: [8.1, 8.2, 8.3] - laravel: [10.*] + laravel: [10.*, 11.*] dependency-version: [prefer-stable] os: [ubuntu-latest] include: - laravel: 10.* testbench: ^8.0 + - laravel: 11.* + testbench: ^9.0 + exclude: + - php: 8.1 + laravel: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel}} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 14878c6..06b78c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.0] – 2024-03-22 + +### Added + +- Added support for Laravel 11 + ## [3.0.0] – 2024-01-05 ### Added diff --git a/composer.json b/composer.json index 9a50273..f813d0b 100644 --- a/composer.json +++ b/composer.json @@ -11,14 +11,14 @@ ], "require": { "php": "~8.1.0 || ~8.2.0 || ~8.3.0", - "laravel/framework": "^10.0", - "roach-php/core": "^2.0 || ^3.0", + "laravel/framework": "^10.0 || ^11.0", + "roach-php/core": "^2.0 || ^3.0 || dev-main", "spatie/laravel-package-tools": "^1.11" }, "require-dev": { "ergebnis/composer-normalize": "^2.15", "ergebnis/php-cs-fixer-config": "^6.19", - "orchestra/testbench": "^7.0 || ^8.0", + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", "phpunit/phpunit": "^10.4", "roave/security-advisories": "dev-latest", "spatie/phpunit-snapshot-assertions": "^5.0"