Skip to content

Commit 1adb219

Browse files
authored
Add laravel 11 support
1 parent 1a1d51e commit 1adb219

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

.github/workflows/run-tests.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,31 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
67
pull_request:
7-
branches: [main]
8+
branches:
9+
- main
810

911
jobs:
1012
test:
1113
runs-on: ${{ matrix.os }}
14+
1215
strategy:
1316
fail-fast: false
1417
matrix:
1518
os: [ubuntu-latest, windows-latest]
1619
php: [8.3, 8.2, 8.1]
17-
laravel: [10.*]
20+
laravel: ['10.*', '11.*']
1821
dependency-version: [prefer-stable]
1922
include:
2023
- laravel: 10.*
2124
testbench: 8.*
25+
- laravel: 11.*
26+
testbench: 9.*
27+
exclude:
28+
- laravel: 11.*
29+
php: 8.1
2230

2331
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2432

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
All notable changes will be documented in this file
44

5-
## 1.1.0 - 2024-01-007
5+
## 1.2.0 - 2024-02-27
6+
7+
- Add Laravel 11 support
8+
9+
## 1.1.0 - 2024-01-07
610

711
- Add PHP 8.3 compatibility
812

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
],
2323
"require": {
2424
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
25-
"illuminate/contracts": "^10.0"
25+
"illuminate/contracts": "^10.0 || ^11.0"
2626
},
2727
"require-dev": {
28-
"nunomaduro/collision": "^7.8",
29-
"orchestra/testbench": "^8.0",
28+
"nunomaduro/collision": "^7.8 || ^8.0",
29+
"orchestra/testbench": "^8.0 || ^9.0",
3030
"phpunit/phpunit": "^10.0"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)