2016-10-20 8 views
0

私はLaravelプロジェクトにFirePhpを設定へしようとしている、 に私は私はコンソールのプロバイダのリストを更新する必要がありましたhere、 からしかし、一部の指示に従っ私はエラーを取得:コンフィグFirePHPはlaravel

'providers' => [ 

    /* 
    * Laravel Framework Service Providers... 
    */ 
    Illuminate\Auth\AuthServiceProvider::class, 
    Illuminate\Broadcasting\BroadcastServiceProvider::class, 
    Illuminate\Bus\BusServiceProvider::class, 
    Illuminate\Cache\CacheServiceProvider::class, 
    Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, 
    Illuminate\Cookie\CookieServiceProvider::class, 
    Illuminate\Database\DatabaseServiceProvider::class, 
    Illuminate\Encryption\EncryptionServiceProvider::class, 
    Illuminate\Filesystem\FilesystemServiceProvider::class, 
    Illuminate\Foundation\Providers\FoundationServiceProvider::class, 
    Illuminate\Hashing\HashServiceProvider::class, 
    Illuminate\Mail\MailServiceProvider::class, 
    Illuminate\Pagination\PaginationServiceProvider::class, 
    Illuminate\Pipeline\PipelineServiceProvider::class, 
    Illuminate\Queue\QueueServiceProvider::class, 
    Illuminate\Redis\RedisServiceProvider::class, 
    Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, 
    Illuminate\Session\SessionServiceProvider::class, 
    Illuminate\Translation\TranslationServiceProvider::class, 
    Illuminate\Validation\ValidationServiceProvider::class, 
    Illuminate\View\ViewServiceProvider::class, 
    Illuminate\View\ViewServiceProvider::class, 
    'P3in\Firephp\FirephpServiceProvider', 



    /* 
    * Application Service Providers... 
    */ 
    App\Providers\AppServiceProvider::class, 
    App\Providers\AuthServiceProvider::class, 
    App\Providers\EventServiceProvider::class, 
    App\Providers\RouteServiceProvider::class, 
    Darryldecode\Cart\CartServiceProvider::class, 



], 
:ここ

[Symfony\Component\Debug\Exception\FatalThrowableError] 
Call to undefined method Illuminate\Config\Repository::package() 

は私のプロバイダの配列がどのように見えるかです3210

+0

poviders配列の 'P3in \ Firephp \ FirephpServiceProvider :: class'で' 'P3in \ Firephp \ FirephpServiceProvider''を置き換える必要があります。 – 2Fwebd

+0

ありがとう、それは私の最初の試みでしたが、残念ながら私は同じエラーが発生します – RoyBar

答えて

1

その機能は削除されました。あなたはview the commit hereです。

Laravelのバージョンをダウングレードしてこのパッケージをサポートしたり、過去2年間にメンテナンスされたパッケージを見つけることができます。

+0

それは実際に意味がある...ありがとう。 – RoyBar

関連する問題