rez1pro/laravel-repository-pattern

A Laravel package to implement the repository pattern in your applications.

Installs: 527

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 0

pkg:composer/rez1pro/laravel-repository-pattern

1.1.2 2025-10-15 07:15 UTC

This package is auto-updated.

Last update: 2025-12-15 07:44:27 UTC


README

A Laravel package that implements the Repository Pattern to provide a clean separation between your business logic and data access layers.

Installation

Install the package via Composer:

composer require rez1pro/laravel-repository-pattern

Configuration

Register the Service Provider

Add the service provider to your bootstrap/app.php file:

return Application::configure(basePath: dirname(__DIR__))
    ->withProviders([
        \Rez1pro\RepositoryPattern\RepositoryServiceProvider::class,
    ])
    // ...existing code...

For Laravel versions < 11, add to config/app.php:

'providers' => [
    // ...existing providers...
    \Rez1pro\RepositoryPattern\RepositoryServiceProvider::class,
],

Usage

Artisan Commands

This package provides convenient Artisan commands to generate repository classes and interfaces:

Generate a Repository Class

php artisan make:repo {RepositoryName}

Example:

php artisan make:repo UserRepository

Generate a Repository Interface

php artisan make:interface {InterfaceName}

Example:

php artisan make:interface UserRepositoryInterface

Features

  • Clean separation of concerns
  • Easy-to-use Artisan commands
  • Follows Laravel conventions
  • Improves testability and maintainability

License

This package is open-sourced software licensed under the MIT license.

Support

For issues, questions, or contributions, please visit the GitHub repository.