diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8b8b94b..abe4420 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,13 +20,13 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.0, 8.1, 8.2, 8.3 ] - laravel: [ 9, 10 ] + php: [ 8.1, 8.2, 8.3 ] + laravel: [ 9, 10, 11 ] exclude: - - php: 8.0 - laravel: 10 - php: 8.3 laravel: 9 + - php: 8.1 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel v${{ matrix.laravel }} @@ -51,6 +51,6 @@ jobs: run: composer test:coverage - name: Upload coverage report - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: false diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a9e62..420acc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [2.1.0](https://github.com/ankurk91/laravel-eloquent-relationships/compare/2.0.0..2.1.0) + +* Test on Laravel 11 +* Drop support for php 8.0 + ## [2.0.0](https://github.com/ankurk91/laravel-eloquent-relationships/compare/1.3.0..2.0.0) * :warning: Rename Model Traits diff --git a/composer.json b/composer.json index 26ba82e..a70716c 100644 --- a/composer.json +++ b/composer.json @@ -16,9 +16,9 @@ } ], "require": { - "php": "^8.0", - "illuminate/database": "^9.34 || ^10", - "illuminate/support": "^9.34 || ^10" + "php": "^8.1", + "illuminate/database": "^9.34 || ^10 || ^11", + "illuminate/support": "^9.34 || ^10 || ^11" }, "require-dev": { "phpunit/phpunit": "^9.5.7"