Skip to content

Commit 2477368

Browse files
Added Laravel 11 support
1 parent 219d248 commit 2477368

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/tests.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
php: ['8.1', '8.2', '8.3']
12-
laravel: ['10.0', '10.32']
12+
laravel: ['10.0', '10.39', '11.x']
13+
exclude:
14+
- php: '8.1'
15+
laravel: '11.x'
1316
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1417
steps:
1518
- name: Checkout

Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Dropped Enum v3 Support
88
- Dropped PHP 8.0 support
99
- Added PHP 8.3 support
10+
- Added Laravel 11 support
1011
- Changed minimum Enum version to v4.1
1112
- BC: Changed all enum interfaces to extend the root `EnumInterface`
1213
- BC: added the `iso2Code()` and the `getName()` methods to the `Country` interface

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
},
1717
"require": {
1818
"php": "^8.1",
19-
"illuminate/database": "^10.0",
20-
"illuminate/support": "^10.0",
19+
"illuminate/database": "^10.0|^11.0",
20+
"illuminate/support": "^10.0|^11.0",
2121
"doctrine/dbal": "^3.5.1",
2222
"konekt/concord": "^1.13",
2323
"konekt/enum": "^4.1",
@@ -31,7 +31,7 @@
3131
},
3232
"require-dev": {
3333
"ext-sqlite3": "*",
34-
"orchestra/testbench": "^8.0",
34+
"orchestra/testbench": "^8.0|^9.0",
3535
"phpunit/phpunit" : "^10.0",
3636
"mockery/mockery": "^1.6.1"
3737
},

0 commit comments

Comments
 (0)