Skip to content

Commit faf946a

Browse files
committed
added support for laravel 10 && Laravel 11
1 parent cb90925 commit faf946a

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

composer.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "laravelcollective/html",
3-
"description": "HTML and Form Builders for the Laravel Framework",
2+
"name": "xenon/collective",
3+
"description": "HTML and Form Builders for the Laravel Framework extends from Laravel Collective",
44
"license": "MIT",
55
"homepage": "https://laravelcollective.com",
66
"support": {
@@ -18,17 +18,17 @@
1818
}
1919
],
2020
"require": {
21-
"php": ">=7.2.5",
22-
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
23-
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
24-
"illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
25-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
26-
"illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0"
21+
"php": "^8.1",
22+
"illuminate/http": "^10.0|^11.0",
23+
"illuminate/routing": "^10.0|^11.0",
24+
"illuminate/session": "^10.0|^11.0",
25+
"illuminate/support": "^10.0|^11.0",
26+
"illuminate/view": "^10.0|^11.0"
2727
},
2828
"require-dev": {
29-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
30-
"mockery/mockery": "~1.0",
31-
"phpunit/phpunit": "~8.5|^9.5.10"
29+
"illuminate/database": "^10.0|^11.0",
30+
"mockery/mockery": "^1.0",
31+
"phpunit/phpunit": "^10.0"
3232
},
3333
"autoload": {
3434
"psr-4": {
@@ -53,6 +53,5 @@
5353
}
5454
},
5555
"minimum-stability": "dev",
56-
"abandoned": "spatie/laravel-html",
5756
"prefer-stable": true
5857
}

readme.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88

99
Official documentation for Forms & Html for The Laravel Framework can be found at the [LaravelCollective](https://laravelcollective.com/docs) website.
1010

11-
## Replacement
12-
If you're looking to replace this package due to it's retirement we recommend using [Shift](https://laravelshift.com/convert-laravelcollective-html-to-spatie-laravel-html)
11+
### Some projects still use Laravelcollective/Html. This package is a fork of official laravelcollctive/html to support laravel 10 and 11.
12+
## Installation
13+
`composer require xenon/collective`
14+
15+
### class and other files are still same as before; no changes

0 commit comments

Comments
 (0)