LaravelCollective / html

HTML and Form Builders for the Laravel Framework
MIT License
3.99k stars 782 forks source link

fix versioning #781

Open nooraliisa opened 4 months ago

nooraliisa commented 4 months ago

Allows installation on Laravel 11

themuddfamily commented 4 months ago

Allows installation on Laravel 11

https://github.com/LaravelCollective/html/blob/6.x/composer.json#L56 this package is abandoned

abdallahisham commented 4 months ago

@themuddfamily thanks for the info, but you will have to deal with it a little before you remove it from old projects

@nooraliisa you saved me a lot of time buddy, I added it from your branch directly:

  "repositories": [
      {
          "type": "vcs",
          "url": "https://github.com/laravel-shift/laravel-notify.git"
      },
      {
          "type": "vcs",
          "url": "https://github.com/nooraliisa/laravelcollective-html"
      }
    ]

then on require:

"laravelcollective/html": "6.x-dev"
themuddfamily commented 4 months ago

@themuddfamily thanks for the info, but you will have to deal with it a little before you remove it from old projects

@nooraliisa you saved me a lot of time buddy, I added it from your branch directly:

  "repositories": [
      {
          "type": "vcs",
          "url": "https://github.com/laravel-shift/laravel-notify.git"
      },
      {
          "type": "vcs",
          "url": "https://github.com/nooraliisa/laravelcollective-html"
      }
    ]

then on require:

"laravelcollective/html": "6.x-dev"

The suggested way to go is using: https://laravelshift.com/convert-laravelcollective-html-to-spatie-laravel-html

This automatically converts everything for you to laravel-html

fulopattila122 commented 4 months ago

See also: https://github.com/LaravelCollective/html/issues/773