Skip to content

Commit 6573d9a

Browse files
committed
[Feature] Add support for Laravel 10
1 parent a04e8b9 commit 6573d9a

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
php: [7.4, '8.0', 8.1, 8.2]
18-
laravel: [8, 9]
18+
laravel: [8, 9, 10]
1919
exclude:
2020
- php: 7.4
2121
laravel: 9
22+
- php: 7.4
23+
laravel: 10
24+
- php: '8.0'
25+
laravel: 10
2226

2327
steps:
2428
- name: Checkout Code

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## Unreleased
7+
8+
### Added
9+
10+
- Package now supports Laravel 10.
11+
612
## [4.0.0] - 2022-02-08
713

814
### Added

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"require": {
2424
"php": "^7.4|^8.0",
2525
"ext-json": "*",
26-
"illuminate/contracts": "^8.0|^9.0",
27-
"illuminate/support": "^8.0|^9.0",
26+
"illuminate/contracts": "^8.0|^9.0|^10.0",
27+
"illuminate/support": "^8.0|^9.0|^10.0",
2828
"phpunit/phpunit": "^9.5.10"
2929
},
3030
"autoload": {
@@ -42,7 +42,7 @@
4242
"dev-develop": "4.x-dev"
4343
}
4444
},
45-
"minimum-stability": "stable",
45+
"minimum-stability": "dev",
4646
"prefer-stable": true,
4747
"config": {
4848
"sort-packages": true

0 commit comments

Comments
 (0)