shibby / loilerplate by shibby

My boilerplate for Laravel projects. Yes, i ALMOST use these packages on every project.
830
0
2
Package Data
Maintainer Username: shibby
Maintainer Contact: guven@atbakan.com (Guven Atbakan)
Package Create Date: 2016-12-17
Package Last Update: 2017-06-12
Language: PHP
License: GPL
Last Refreshed: 2024-05-12 03:10:31
Package Statistics
Total Downloads: 830
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

StyleCi

Since it's not a stable package, first of all you should avoid of using this.

What?

It's a Boilerplate for Laravel framework.

It contains and registers these packages by default:

## Installation

Install package and dev-dependencies via composer


composer require barryvdh/laravel-ide-helper barryvdh/laravel-debugbar rap2hpoutre/laravel-log-viewer --dev

composer require shibby/loilerplate

Add service provider to config/app.php

'providers' => [
   // ...
   \Shibby\Loilerplate\LoilerplateServiceProvider::class,
]

Also add Facades to config/app.php

'aliases' => [
   // ...
   'Agent' => Jenssegers\Agent\Facades\Agent::class,
   'Form' => Collective\Html\FormFacade::class,
   'Html' => Collective\Html\HtmlFacade::class,
]

Publish vendors

php artisan vendor:publish