Skip to content

Commit fa3f77b

Browse files
authored
Merge pull request #610 from jonnott/patch-3
Laravel 12 support
2 parents d81102c + 488e6b1 commit fa3f77b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
pull_request:
88
branches:
9-
- *
9+
- "**"
1010
schedule:
1111
- cron: '0 0 * * *'
1212

README.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +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-10 package for working with trees in relational databases.
7+
This is a Laravel package for working with trees in relational databases.
88

9+
* **Laravel 12.0** is supported since v6.0.??
910
* **Laravel 11.0** is supported since v6.0.4
1011
* **Laravel 10.0** is supported since v6.0.2
1112
* **Laravel 9.0** is supported since v6.0.1

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
],
1818
"require": {
1919
"php": "^7.2.5|^8.0",
20-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0"
20+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)