Skip to content

Commit

Permalink
Added Laravel 11 support (experimental, pre-release)
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Jan 8, 2024
1 parent 00a2b22 commit b3e3720
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ jobs:
strategy:
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
laravel: ['9.2', '9.52', '10.0', '10.32']
laravel: ['9.2', '9.52', '10.0', '10.39', '11.x']
enum: ['2', '3', '4']
exclude:
- php: '8.0'
laravel: '10.0'
- php: '8.0'
laravel: '10.32'
laravel: '10.39'
- php: '8.0'
laravel: '11.x'
- php: '8.1'
laravel: '11.x'
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} Enum ${{ matrix.enum }}
steps:
- name: Checkout
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## 1.X Series

### Unreleased
##### 2024-XX-YY

- Added Laravel 11 support (pre-release)

### 1.13.1
##### 2023-11-17

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
},
"require": {
"php": "^8.0",
"illuminate/support": "^9.2|^10.0",
"illuminate/console": "^9.2|^10.0",
"illuminate/support": "^9.2|^10.0|^11.0",
"illuminate/console": "^9.2|^10.0|^11.0",
"konekt/enum": "^2.1|^3.0|^4.0",
"konekt/enum-eloquent": "^1.7"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit" : "9 - 10"
},
"autoload": {
Expand Down

0 comments on commit b3e3720

Please sign in to comment.