Skip to content

Commit

Permalink
added support for laravel 10 && Larave 11
Browse files Browse the repository at this point in the history
  • Loading branch information
arif98741 committed Sep 18, 2024
1 parent cb90925 commit f7259d7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
23 changes: 11 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laravelcollective/html",
"description": "HTML and Form Builders for the Laravel Framework",
"name": "xenon/collective",
"description": "HTML and Form Builders for the Laravel Framework extends from Laravel Collective",
"license": "MIT",
"homepage": "https://laravelcollective.com",
"support": {
Expand All @@ -18,17 +18,17 @@
}
],
"require": {
"php": ">=7.2.5",
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0"
"php": "^8.1",
"illuminate/http": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/session": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0"
},
"require-dev": {
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~8.5|^9.5.10"
"illuminate/database": "^10.0|^11.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
Expand All @@ -53,6 +53,5 @@
}
},
"minimum-stability": "dev",
"abandoned": "spatie/laravel-html",
"prefer-stable": true
}
7 changes: 5 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@

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

## Replacement
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)
### Some projects still use Laravelcollective/Html. This package is a fork of official laravelcollctive/html to support laravel 10 and 11.
## Installation
`composer require xenon/collective`

### class and other files are still same as before; no changes

0 comments on commit f7259d7

Please sign in to comment.