codeofdigital/cache-repository
Laravel Repository Package with Caching
4,355
1
| Install | |
|---|---|
composer require codeofdigital/cache-repository |
|
| Latest Version: | v1.1.2 |
| License: | MIT |
| Last Updated: | Apr 7, 2023 |
| Links: | GitHub · Packagist |
Maintainer: codeofdigital
Laravel Cache Repository
Laravel Repository design pattern package that comes with caching features
Overview
Laravel package that revolves around Repository design pattern to encapsulate database-related functions, making our application more flexible and classes are reusable. Comes with normal repository features and caching features as well.
Table of Contents
- Installation
- Composer
Installation
Composer
Execute the following command to get the latest version of the package:
composer require codeofdigital/cache-repository
Publish Config
You can then publish the package's config file and database migrations file with the following command:
php artisan vendor:publish --provider="CodeOfDigital\CacheRepository\CacheRepositoryServiceProvider"
Related Packages
acacha/l5-repository
Laravel 5 - Repositories to the database layer. Based on prettus/l5-repository
1,278
1