Skip to content

Commit

Permalink
Merge pull request #155 from mailerlite/support-php-83-and-laravel-11
Browse files Browse the repository at this point in the history
Support php 83 and laravel 11
  • Loading branch information
shuvroroy committed Apr 5, 2024
2 parents c924659 + 90ed858 commit 5f755bc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2]
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
elastic: [7.11.0]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
stability: prefer-lowest
- php: 8.2
stability: prefer-lowest
- php: 8.3
stability: prefer-lowest
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
:major: 11
:minor: 0
:minor: 1
:patch: 0
:special: ''
:metadata: ''
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 11.1.0 - 13-Jun-2023

- support laravel 11.0 & php 8.3 in github action (thanks @shuvroroy)

## 11.0.0 - 13-Jun-2023

- update namespace and support php 8.2 in github action (thanks @nklmilojevic and @shuvroroy)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.11",
"guzzlehttp/psr7": "^1.7|^2.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"psr/http-message": "^1.0"
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.5|^7.0|^8.0",
"orchestra/testbench": "^6.5|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.4"
},
"suggest": {
Expand Down

0 comments on commit 5f755bc

Please sign in to comment.