Skip to content

Commit 5f755bc

Browse files
authored
Merge pull request #155 from mailerlite/support-php-83-and-laravel-11
Support php 83 and laravel 11
2 parents c924659 + 90ed858 commit 5f755bc

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

Diff for: .github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.3, 7.4, 8.0, 8.1, 8.2]
12+
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
1313
elastic: [7.11.0]
1414
stability: [prefer-lowest, prefer-stable]
1515
exclude:
1616
- php: 8.1
1717
stability: prefer-lowest
1818
- php: 8.2
1919
stability: prefer-lowest
20+
- php: 8.3
21+
stability: prefer-lowest
2022
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
2123

2224
steps:

Diff for: .semver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
:major: 11
3-
:minor: 0
3+
:minor: 1
44
:patch: 0
55
:special: ''
66
:metadata: ''

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 11.1.0 - 13-Jun-2023
4+
5+
- support laravel 11.0 & php 8.3 in github action (thanks @shuvroroy)
6+
37
## 11.0.0 - 13-Jun-2023
48

59
- update namespace and support php 8.2 in github action (thanks @nklmilojevic and @shuvroroy)

Diff for: composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
"ext-json": "*",
2121
"elasticsearch/elasticsearch": "^7.11",
2222
"guzzlehttp/psr7": "^1.7|^2.0",
23-
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
24-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
25-
"psr/http-message": "^1.0"
23+
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
24+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
25+
"psr/http-message": "^1.0|^2.0"
2626
},
2727
"require-dev": {
2828
"mockery/mockery": "^1.4.3",
29-
"orchestra/testbench": "^6.5|^7.0|^8.0",
29+
"orchestra/testbench": "^6.5|^7.0|^8.0|^9.0",
3030
"phpunit/phpunit": "^9.4"
3131
},
3232
"suggest": {

0 commit comments

Comments
 (0)