febalist/laravel

This package is abandoned and no longer maintained. The author suggests using the febalist/laravel-support package instead.

Laravel routing

v8.2.0 2016-03-31 18:38 UTC

This package is auto-updated.

Last update: 2016-08-14 19:47:29 UTC


README

config/app.php

Добавить

Febalist\Laravel\ServiceProvider::class,

Удалить

Illuminate\Translation\TranslationServiceProvider::class,

config/app.php

'Date' => Jenssegers\Date\Date::class,
'Git' => Febalist\Laravel\Facades\Git::class,
'Http' => Febalist\Laravel\Facades\Http::class,

Выполнить

composer require --dev filp/whoops doctrine/dbal barryvdh/laravel-ide-helper
composer require febalist/laravel

config/services.php

'sypex' => [
    'key'    => env('SYPEX_KEY'),
    'server' => env('SYPEX_SERVER', 'api.sypexgeo.net'),
],

app/Console/Kernel.php

use Febalist\Laravel\Console\Commands as Febalist;
//...
    protected $commands = [
        //...
        Febalist\MigrateHard::class,
        Febalist\GitForget::class,
    ];

app/Exceptions/Handler.php

//...
use Febalist\Laravel\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler {
//...