Skip to content

Commit

Permalink
Added Laravel 11 support
Browse files Browse the repository at this point in the history
- Added PHPUnit v10 support
  • Loading branch information
fulopattila122 committed Jan 8, 2024
1 parent 331d2be commit 8ea218a
Show file tree
Hide file tree
Showing 3 changed files with 15 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,12 +9,16 @@ jobs:
strategy:
matrix:
php: [ '8.0', '8.1', '8.2', '8.3' ]
laravel: [ '9.2', '9.52', '10.0', '10.31']
laravel: [ '9.2', '9.52', '10.0', '10.39', '11.x']
exclude:
- php: '8.0'
laravel: '10.0'
- php: '8.0'
laravel: '10.31'
laravel: '10.39'
- php: '8.0'
laravel: '11.x'
- php: '8.1'
laravel: '11.x'
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}

services:
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Konekt Search Changelog

## Unreleased
#### 2023-XX-YY

- Added Laravel 11 support
- Added PHPUnit 10 support (internal)

## 1.2.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 @@ -24,13 +24,13 @@
"require": {
"php": "^8.0",
"ext-pdo": "*",
"laravel/framework": "^9.0|^10.0",
"laravel/framework": "^11.0|^11.0|^11.0",
"nesbot/carbon": "^2.66"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 8ea218a

Please sign in to comment.