Skip to content

Commit b394b05

Browse files
committed
Add support for Laravel 8
1 parent d4fe17f commit b394b05

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ php:
55
- 5.6
66
- 7.1
77
- 7.2
8+
- 7.3
89

910
before_script:
1011
- curl -s http://getcomposer.org/installer | php

README.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
[![Latest Unstable Version](https://poser.pugx.org/kalnoy/nestedset/v/unstable.svg)](https://packagist.org/packages/kalnoy/nestedset)
55
[![License](https://poser.pugx.org/kalnoy/nestedset/license.svg)](https://packagist.org/packages/kalnoy/nestedset)
66

7-
This is a Laravel 4-6 package for working with trees in relational databases.
7+
This is a Laravel 4-8 package for working with trees in relational databases.
88

9-
* **Laravel 5.7, 5.8, 6.0, 7.0** is supported since v5
9+
* **Laravel 5.7, 5.8, 6.0, 7.0, 8.0** is supported since v5
1010
* **Laravel 5.5, 5.6** is supported since v4.3
1111
* **Laravel 5.2, 5.3, 5.4** is supported since v4
1212
* **Laravel 5.1** is supported in v3

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
],
1313

1414
"require": {
15-
"php": ">=7.1.3",
16-
"illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0",
17-
"illuminate/database": "~5.7.0|~5.8.0|^6.0|^7.0",
18-
"illuminate/events": "~5.7.0|~5.8.0|^6.0|^7.0"
15+
"php": ">=7.3.0",
16+
"illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
17+
"illuminate/database": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
18+
"illuminate/events": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0"
1919
},
2020

2121
"autoload": {

0 commit comments

Comments
 (0)