Skip to content

Commit fd8ff98

Browse files
authored
Merge pull request #6 from kirschbaum-development/laravel-7
Add support for Laravel 7
2 parents 411c8c4 + 675a61a commit fd8ff98

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

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-route-file-macro` will be documented in this file.
44

5+
## 0.3.0 - 2020-03-09
6+
7+
- Support for Laravel 7
8+
59
## 0.2.0 - 2019-10-02
610

711
- Support for Laravel 6

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
}
2727
],
2828
"require": {
29-
"php": ">=7.1.3",
30-
"illuminate/routing": "^5.7|^6.0",
31-
"illuminate/support": "^5.7|^6.0"
29+
"php": ">=7.2.5",
30+
"illuminate/routing": "^5.7|^6.0|^7.0",
31+
"illuminate/support": "^5.7|^6.0|^7.0"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^4.0",
34+
"orchestra/testbench": "^5.0",
3535
"mockery/mockery": "^1.0",
36-
"phpunit/phpunit": "^8.0"
36+
"phpunit/phpunit": "^8.5"
3737
},
3838
"autoload": {
3939
"psr-4": {

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This package allows you to load a routes file directly from the Laravel `Router`
99

1010
This package requires Laravel 5.7 or higher.
1111

12+
__Due to Laravel 7's PHP version requirement, if you need support for PHP 7.1, please use version 0.2 of the package.__
13+
1214
## Installation
1315

1416
You can install this macro via composer:

0 commit comments

Comments
 (0)