Skip to content

Commit

Permalink
Test on laravel 11
Browse files Browse the repository at this point in the history
Drop php 8.0
  • Loading branch information
ankurk91 committed Feb 17, 2024
1 parent 51b294b commit 4df67c6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4df67c6

Please sign in to comment.