LaravelPackages.net
Acme Inc.
Toggle sidebar
wekode/repository

Repository pattern setup

164
3
v0.5.0
About wekode/repository

wekode/repository is a Laravel package for repository pattern setup. It currently has 3 GitHub stars and 164 downloads on Packagist (latest version v0.5.0). Install it with composer require wekode/repository. Discover more Laravel packages by wekode or browse all Laravel packages to compare alternatives.

Last updated

WekodeRepository

This is a package to easely integrate a repository pattern with the needed service provider and all the necessary basic functions

Installation

Require this package with composer. It is recommended to only require the package for development.

composer require wekode/repository

Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

Laravel without auto-discovery:

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

Wekode\Repository\RepositorySetupServiceProvider,

Copy the package main files and setup your repository with the publish command:

php artisan vendor:publish --provider="Wekode\Repository\RepositorySetupServiceProvider"

Usage

This package comes with a command that creates the repositories and contracts, as well as the model if it does not exist.

php artisan make:repository Post

This command will create a repository file, a contract file and links the in the RespositoryServiceProvider. PS: the used model will be the first word of the Repository file name (ex : PostRepository will be linked to the model Post)

In case the model does not exist you can use this command

php artisan make:repository Post -m

This command will create the repository as well as execute a model creation command

php artisan make:model Post -a

Or if you do not want to create everything you can specify the option.

php artisan make:repository PostRepository -m -s -f -r

Star History Chart