wandu/laravel-repository
最新稳定版本:v0.10.0
Composer 安装命令:
composer require wandu/laravel-repository
包简介
For Laravel Repository Pattern
README 文档
README
For Laravel Repository Pattern.
라라벨 모델을 기반으로 저장소 패턴을 만들기위한 패키지입니다. 모델과 컨트롤러 사이에 레이어를 두게되면 관찰자 패턴을 구현하기 편하고, 동일한 질의가 두번 요청 되었을 때, 중복으로 데이터베이스에 요청하는 것을 막을 수 있습니다.
사용법
3가지 방식의 저장소를 사용할 수 있습니다.
- default repository
- pagination repository
- more items repository
1. Default Repository
namespace Wandu\Laravel\Repository\Stubs\Repository; use Wandu\Laravel\Repository\Repository; use Wandu\Laravel\Repository\Stubs\Model\ArticleHit; class ArticleHitRepository extends Repository { /** @var string */ protected $model = ArticleHit::class; }
Methods(매서드)
2. Pagination Repository
1페이지, 2페이지, ... 의 구조로 구현할 때 사용하는 방식입니다
namespace Wandu\Laravel\Repository\Stubs\Repository; use Wandu\Laravel\Repository\PaginationRepositoryInterface; use Wandu\Laravel\Repository\Repository; use Wandu\Laravel\Repository\Stubs\Model\User; use Wandu\Laravel\Repository\Traits\UsePaginationRepository; class UserRepository extends Repository implements PaginationRepositoryInterface { use UsePaginationRepository; /** @var string */ protected $model = User::class; }
3. More Items Repository
아이템 더 보기... 의 구조로 구현할 때 사용하는 방식입니다
namespace Wandu\Laravel\Repository\Stubs\Repository; use Wandu\Laravel\Repository\MoreItemsRepositoryInterface; use Wandu\Laravel\Repository\Repository; use Wandu\Laravel\Repository\Stubs\Model\User; use Wandu\Laravel\Repository\Traits\UseMoreItemsRepository; class UserRepository extends Repository implements MoreItemsRepositoryInterface { use UseMoreItemsRepository; /** @var string */ protected $model = User::class; }
wandu/laravel-repository 适用场景与选型建议
wandu/laravel-repository 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.21k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「repository」 「data mapper」 「laravel」 「wandu」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 wandu/laravel-repository 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wandu/laravel-repository 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 wandu/laravel-repository 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
data-mapper php library
repository php library
Convention-based Alternative ORM
Adds the EDTF data type to Wikibase
A simple library that allows transform any kind of data to native php data or whatever
统计信息
- 总下载量: 3.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-12