Skip to content

Commit

Permalink
Merge pull request #7 from bilfeldt/upgrades/laravel11
Browse files Browse the repository at this point in the history
Add laravel 11 support
  • Loading branch information
bilfeldt authored Feb 27, 2024
2 parents 1a1d51e + 1adb219 commit bc089bc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,31 @@ name: run-tests

on:
push:
branches: [main]
branches:
- main
pull_request:
branches: [main]
branches:
- main

jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
laravel: [10.*]
laravel: ['10.*', '11.*']
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

All notable changes will be documented in this file

## 1.1.0 - 2024-01-007
## 1.2.0 - 2024-02-27

- Add Laravel 11 support

## 1.1.0 - 2024-01-07

- Add PHP 8.3 compatibility

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"illuminate/contracts": "^10.0"
"illuminate/contracts": "^10.0 || ^11.0"
},
"require-dev": {
"nunomaduro/collision": "^7.8",
"orchestra/testbench": "^8.0",
"nunomaduro/collision": "^7.8 || ^8.0",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
Expand Down

0 comments on commit bc089bc

Please sign in to comment.