killtw / repository
This package is abandoned and no longer maintained.
No replacement package was suggested.
Repository for Laravel 5
1.0.3
2015-09-18 07:10 UTC
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