Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Laravel 11 and PHP 8.3 support #32

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,26 @@ 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.2, 8.1, 8.0]
laravel: [10.*, 9.*, 8.*]
php: [8.3, 8.2, 8.1, 8.0]
laravel: ['11.*', '10.*', '9.*', '8.*']
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
Expand All @@ -26,6 +31,10 @@ jobs:
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

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 @@

All notable changes to `laravel-flash-message` will be documented in this file.

## 1.2.0 - 2024-02-28

- Add Laravel 11 support
- Add PHP 8.3 support

## 1.1.0 - 2023-05-01

- Add Laravel 10 support
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"illuminate/contracts": "^8.51 || ^9.0 || ^10.0"
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"illuminate/contracts": "^8.51 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"nunomaduro/collision": "^5.3 || ^6.0 || ^7.0",
"orchestra/testbench": "^6.15 || ^7.0 || ^8.0",
"phpunit/phpunit": "^9.3",
"nunomaduro/collision": "^5.3 || ^6.0 || ^7.0 || ^8.0",
"orchestra/testbench": "^6.15 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.3 || ^10.0",
"spatie/laravel-ray": "^1.23"
},
"autoload": {
Expand Down
Loading