gearhub / laravel-enhancement-suite
Additions that are used in most of our Laravel projects.
Installs: 96
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/gearhub/laravel-enhancement-suite
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: 2025-10-26 08:48:43 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"