eazybright/repository-package
最新稳定版本:1.0.1
Composer 安装命令:
composer require eazybright/repository-package
包简介
A package for managing repository design pattern
README 文档
README
Photo Credit: Repository design pattern done right in Laravel | by Daan | ITNEXT
Introduction
This package main purpose is to manage repository design pattern in your laravel projects. It helps you create your repository and interface files respectively with a single command.
Installation
To install this package run:
composer require eazybright/repository-package
This will install the package into your project.
Usage
Next, create a repostory file by running:
php artisan repository:create Blog
Make sure to provide your own argument name when running the above command, I used Blog as an example.
Once the command run, it creates the repository files App\Repositories\BlogRepository.php, App\Repositories\Interfaces\BlogRepositoryInterface.php and also create a service provider file in App\Providers\RepositoryServiceProvider.php.
You need to register the service provider. Open up config/app.php and add the following to the providers key.
'providers' => [ ... App\Providers\RepositoryServiceProvider::class, ... ]
The Repository file will be registered into RepositoryServiceProvider::class whenever it is created.
<?php ... use App\Repositories\Interfaces\BlogRepositoryInterface; use App\Repositories\BlogRepository; ... public function register() { $this->app->bind( BlogRepositoryInterface::class, BlogRepository::class ) } ...
Contributing
Please feel free to star and fork this package. You can also contribute by submitting a pull request to enhance the functionalities.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 4.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-07-17