Skip to content

Commit fc15f86

Browse files
authored
Merge pull request #20 from erjanmx/add-laravel-9-support
Add Laravel-9 support
2 parents de970a7 + c720928 commit fc15f86

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- '7.2'
54
- '7.3'
65
- '7.4'
76
- '8.0'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-migrate-check` will be documented in this file
44

5+
## 2.3.0 - 2022-02-12
6+
7+
- Add PHP 9 support
8+
59
## 2.2.0 - 2021-05-21
610

711
- Add PHP 8 support

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
],
2020
"require": {
2121
"php": "^7.2||^8.0",
22-
"illuminate/console": "^6|^7|^8",
23-
"illuminate/events": "^6|^7|^8"
22+
"illuminate/console": "^6|^7|^8|^9",
23+
"illuminate/events": "^6|^7|^8|^9"
2424
},
2525
"require-dev": {
2626
"mockery/mockery": "^1.0",
27-
"orchestra/testbench": "3.6.* || 3.7.* || 3.8.* || 3.9.* || ^4.0 || ^5.0",
28-
"phpunit/phpunit": "^7.5 || ^8.4"
27+
"orchestra/testbench": "^6.0",
28+
"phpunit/phpunit": "^9.0"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)