killtw / repository
Repository for Laravel 5
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/killtw/repository
Requires
- php: >=5.4.0
- illuminate/config: ~5.0|~5.1
- illuminate/console: ~5.0|~5.1
- illuminate/database: ~5.0|~5.1
- illuminate/http: ~5.0|~5.1
- illuminate/pagination: ~5.0|~5.1
- illuminate/routing: ~5.0|~5.1
- illuminate/support: ~5.0|~5.1
- league/fractal: ^0.12.0
- prettus/laravel-validation: ^1.1
This package is not auto-updated.
Last update: 2020-01-24 16:58:22 UTC
README
Repository for Lavavel 5 which is used to abstract the data layer.
Getting Started
First, install the package through composer:
$ composer require killtw/repository
or add this to require section in your composer.json file:
"killtw/repository": "1.*"
And then, include the service provider whthin config/app.php
'providers' => [ Ontoo\Repository\Providers\RepositoryServiceProvider::class, ];
Usage
Create a repository
Create repositories through generator.
$ php artisan make:repository UserRepository