diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d561134..d901465 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.2] + php: [8.2, 8.3] stability: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.stability }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f8ca1d7..78cd5b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 11.x.x - xx-xxx-xxxx + +- Added Laravel 11 support +- Changed the minimum PHP version to v8.2 + ## 10.0.x - xx-xxx-xxxx - fix for larastan issue (#596, thanks @WalrusSoup) diff --git a/README.md b/README.md index d1f2f32..b4b33cd 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,7 @@ version of the package. | Laravel Version | Package Version | |:---------------:|:---------------:| +| 11.0 | ^11.0 | | 10.0 | ^10.0 | | 9.0 | ^9.0 | | 8.0 | ^8.0 | diff --git a/composer.json b/composer.json index 89f81bb..ca5e0f0 100644 --- a/composer.json +++ b/composer.json @@ -18,15 +18,15 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "cocur/slugify": "^4.3", - "illuminate/config": "^10.0", - "illuminate/database": "^10.0", - "illuminate/support": "^10.0" + "illuminate/config": "^11.0", + "illuminate/database": "^11.0", + "illuminate/support": "^11.0" }, "require-dev": { "mockery/mockery": "^1.4.4", - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^9.0", "pestphp/pest": "^2.28" }, "autoload": { @@ -54,6 +54,9 @@ "providers": [ "Cviebrock\\EloquentSluggable\\ServiceProvider" ] + }, + "branch-alias": { + "dev-master": "11.0.x-dev" } }, "minimum-stability": "dev",