Skip to content

Commit 0d5a166

Browse files
committed
Add preliminary Laravel 9 support
1 parent 75a173b commit 0d5a166

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ checks:
2020
tools:
2121
external_code_coverage:
2222
timeout: 600
23-
runs: 3
23+
runs: 4
2424

2525
build:
2626
nodes:

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ matrix:
88
env: LARAVEL_VERSION="^7.0"
99
- php: "8.0"
1010
env: LARAVEL_VERSION="^8.0"
11+
- php: "8.0"
12+
env: LARAVEL_VERSION="^9.0"
1113

1214
sudo: false
1315

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
### Added
10+
11+
* Added support for Laravel 9.
12+
913
### Fixed
1014

1115
* Temporarily suppress PHP 8.1 notices about inconsistencies with interfaces.

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"require": {
66
"php": "^7.3|^8.0",
77
"ext-json": "*",
8-
"illuminate/contracts": "^6.0|^7.0|^8.0",
8+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
99
"php-http/discovery": "^1.0",
1010
"psr/http-client": "^1.0",
1111
"psr/http-client-implementation": "^1.0",
1212
"psr/http-factory": "^1.0",
1313
"psr/http-factory-implementation": "^1.0",
1414
"psr/http-message": "^1.0",
15-
"swisnl/illuminate-collections": "^6.0|^7.0|^8.0"
15+
"swisnl/illuminate-collections": "^6.0|^7.0|^8.0|^9.0"
1616
},
1717
"require-dev": {
1818
"friendsofphp/php-cs-fixer": "^3.0",
@@ -58,5 +58,7 @@
5858
"branch-alias": {
5959
"dev-master": "2.0.x-dev"
6060
}
61-
}
61+
},
62+
"minimum-stability": "dev",
63+
"prefer-stable": true
6264
}

0 commit comments

Comments
 (0)