Skip to content

Commit

Permalink
Added Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Jan 8, 2024
1 parent d32cae3 commit 6cfaae0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 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: ['8.75', '8.83', '9.0', '9.52', '10.0', '10.32']
laravel: ['8.75', '8.83', '9.0', '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
@@ -1,6 +1,11 @@
# Changelog
### Konekt Enum Eloquent

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

- Added Laravel 11 support (experimental, pre-release)

## 1.9.2
##### 2023-11-17

Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"type": "library",
"license": "MIT",
"keywords": ["enum", "konekt", "artkonekt", "laravel", "eloquent"],
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"source": "https://github.com/artkonekt/enum-eloquent"
},
Expand All @@ -24,11 +26,11 @@
"require": {
"php": "^8.0",
"konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
"illuminate/database": "^8.75|9.*|10.*"
"illuminate/database": "^8.75|9.*|10.*|11.*"
},
"require-dev": {
"phpunit/phpunit": "9 - 10",
"illuminate/events": "^8.75|9.*|10.*"
"illuminate/events": "^8.75|9.*|10.*|11.*"
},
"autoload": {
"psr-4": { "Konekt\\Enum\\Eloquent\\": "src/" }
Expand Down

0 comments on commit 6cfaae0

Please sign in to comment.