openh2labs / elastic-erga

A toolkit for elastic search.
MIT License
1 stars 2 forks source link

Replace discontinued Illuminate/HtmlServiceProvider with Collective\Html\HtmlServiceProvider::class, #10

Open dance-cmdr opened 8 years ago

dance-cmdr commented 8 years ago

We need to replace Illuminate/HtmlServiceProvider as it is discontinued and it will cause issues sooner or later. There is a new project to replace it.

https://laravelcollective.com/docs/5.2/html

we need to change app configuration: replace

    'Illuminate\Html\HtmlServiceProvider'

with

     Collective\Html\HtmlServiceProvider::class

, in providers array

and replace

    'Form'=> 'Illuminate\Html\FormFacade', 
    'HTML'=> 'Illuminate\Html\HtmlFacade',

with

    'Form' => Collective\Html\FormFacade::class,
    'Html' => Collective\Html\HtmlFacade::class,

in aliases array

purificant commented 8 years ago

I believe this is now resolved in master. Can close the issue after some testing.