Skip to content

Commit

Permalink
Add support for Laravel 11. #3
Browse files Browse the repository at this point in the history
  • Loading branch information
hofmannsven committed Mar 14, 2024
1 parent 9e2e8a2 commit a28bd84
Show file tree
Hide file tree
Showing 4 changed files with 1,312 additions and 1,050 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2, 8.1]
laravel: [10.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Notable changes and release notes of the _Laravel Brevo_ package.

## 1.2.0 / Release - 2024-03-14
- Add support for Laravel 11

## 1.1.0 / Release - 2024-03-05
- Convert protected variables to private.
- Enforce custom formatting with Laravel Pint (GitHub Action).
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
},
"require": {
"php": "^8.1",
"getbrevo/brevo-php": "^1.0.0",
"illuminate/contracts": "^8.0|^9.0|^10.0"
"getbrevo/brevo-php": "^1.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"nunomaduro/collision": "^7.10",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^10.1"
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit a28bd84

Please sign in to comment.