gearhub / laravel-enhancement-suite
Additions that are used in most of our Laravel projects.
Package info
github.com/gearhub/laravel-enhancement-suite
pkg:composer/gearhub/laravel-enhancement-suite
v2.0.0
2017-09-08 20:14 UTC
Requires
- php: >=5.6.4
- illuminate/console: ^5.5
- illuminate/support: ^5.5
- league/fractal: ^0.16.0
Requires (Dev)
- mockery/mockery: 0.9.*
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2026-03-01 11:16:58 UTC
README
Installation
To install with composer you can run:
$ composer require gearhub/laravel-enhancement-suite
or you can edit your composer.json with:
"require": { "gearhub/laravel-enhancement-suite": "^1.0.0" }
Once that is finished, you need to add the service provider to your providers array in your app.php:
GearHub\LaravelEnhancementSuite\LaravelEnhancementSuiteServiceProvider::class
Next, you need to add the facade to your aliases array in your app.php:
'Repository' => \GearHub\LaravelEnhancementSuite\Facades\Repository::class
Run this in the command line:
$ php artisan vendor:publish --provider="GearHub\LaravelEnhancementSuite\LaravelEnhancementSuiteServiceProvider"