diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eb90523..46deb7d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,8 +14,8 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] - laravel: [10] + php: [8.2, 8.3] + laravel: [11] steps: - name: Checkout Code diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f53bc1..37b9681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/). +## Unreleased + +### Changed + +- **BREAKING** Package now requires Laravel 11. +- Minimum PHP version is now `8.2`. + ## [3.0.0] - 2023-02-14 ### Changed diff --git a/composer.json b/composer.json index 654754e..a5a5234 100644 --- a/composer.json +++ b/composer.json @@ -23,11 +23,11 @@ } ], "require": { - "php": "^8.1", - "laravel-json-api/core": "^3.0" + "php": "^8.2", + "laravel-json-api/core": "^4.0" }, "require-dev": { - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^9.0", "phpunit/phpunit": "^10.5" }, "autoload": { @@ -43,7 +43,7 @@ }, "extra": { "branch-alias": { - "dev-develop": "3.x-dev" + "dev-develop": "4.x-dev" } }, "minimum-stability": "stable",