activismebe / database-layering
Laravel Repositories
0.35
2018-09-20 03:41 UTC
Requires
- php: >=5.6.0
- illuminate/console: 5.5.*|5.6.*|5.7.*
- illuminate/database: 5.5.*|5.6.*|5.7.*
- illuminate/filesystem: 5.5.*|5.6.*|5.7.*
- illuminate/support: 5.5.*|5.6.*|5.7.*
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.8
- mockery/mockery: dev-master@dev
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~5.7|~6.0
README
ActivismeBe Database Layering is a package for Laravel 5 which is used to abstract the database layer. This make applications much easier to maintain.
Installation
NOTE: This package can be used in Laravel 5.4 or higher.
You can install the package via composer:
composer require activismebe/database-layering
Now add the service provider in config/app.php
file:
'providers' => [ // ... ActivismeBE\DatabaseLayering\Repositories\Providers\RepositoryProvider::class, ];
You can publish the configuration file now with;
php artisan vendor:publish
After that u ready to go and completed the installation.