Umschalten von Illuminate \ Html auf Collective \ Html, Klasse 'Illuminate \ Html \ HtmlServiceProvider' nicht gefunden

Ich habe @ aktualisiecomposer.json um illuminate \ html zu entfernen und hinzuzufügen:

"require": {
    "laravelcollective/html": "5.1.*"

Ich habe die Anbieter / Aliase von @ entfernapp.php für Illuminate \ Html und fügte die Ersetzungen hinzu:

    Collective\Html\HtmlServiceProvider::class,

...

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

Jedoch beim Laufencomposer update Ich erhalte die Ausgabe:

$ composer update
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Removing illuminate/html (v5.0.0)

- Installing laravelcollective/html (v5.1.4)
  Downloading: 100%  

Writing lock file
Generating autoload files
> php artisan clear-compiled
PHP Fatal error:  Class 'Illuminate\Html\HtmlServiceProvider' not found in vendor/laravel/framework/src/Illuminate/Foundation/Application.php on line 648

[Symfony\Component\Debug\Exception\FatalErrorException]  
Class 'Illuminate\Html\HtmlServiceProvider' not found                                                     

Script php artisan clear-compiled handling the post-update-cmd event returned with an error

[RuntimeException]                                                                   
Error Output: PHP Fatal error:  Class 'Illuminate\Html\HtmlServiceProvider' not found in vendor/laravel/framework/src/Illuminate/Foundation/Application.php on line 648 

Ich habe versucht, @ zu aktualisiercomposer.json Skripte wie hier vorgeschlagen:https: //github.com/LaravelCollective/html/issues/5

Aber ich erhalte immer noch den Fehler. Jede Hilfe wird sehr geschätzt:)

Antworten auf die Frage(2)

Ihre Antwort auf die Frage