2017 © Pedro Peláez
 

library repository-pattern

An artisan command interface for generating Laravel repository pattern modules

image

onethirtyone/repository-pattern

An artisan command interface for generating Laravel repository pattern modules

  • Friday, April 20, 2018
  • by 131Studios
  • Repository
  • 0 Watchers
  • 0 Stars
  • 38 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 81 % Grown

The README.md

OneThirtyOne/Repository-Pattern

Build Status StyleCI, (*1)

Simple Artisan command to create repository pattern modules for Laravel application. Run php artisan onethirtyone:create-repository Test -m to create App\Repositories\TestRepository.php ad associated App\Test.php Model. Omit the -m option to skip creating the model., (*2)

Installation

Install using composer ```$xslt composer require onethirtyone/repository-pattern, (*3)


For laravel 5.5+ there is nothing more you need to do. For laravel 5.4 and below add the service provider to your `config/app.php` ```php $providers => [ ... onethirtyone\Repository\RepositoryProvider::class, ... ];

Run the Artisan command to create a repository and the, optional, associated model $xslt php artisan onethirtyone:make-repository Test -m, (*4)

This will create a TestRepository.php file under app\Repositories. if using the -m options, the associated Eloquent model will be created under app/, (*5)

The Versions

20/04 2018

dev-master

9999999-dev

An artisan command interface for generating Laravel repository pattern modules

  Sources   Download

MIT

The Requires

 

The Development Requires

by Robb Fountain

laravel repository pattern

20/04 2018

v1.1.1

1.1.1.0

An artisan command interface for generating Laravel repository pattern modules

  Sources   Download

MIT

The Requires

 

The Development Requires

by Robb Fountain

laravel repository pattern

20/04 2018

v1.1

1.1.0.0

An artisan command interface for generating Laravel repository pattern modules

  Sources   Download

MIT

The Requires

 

by Robb Fountain

laravel repository pattern

20/04 2018

v1.0.1

1.0.1.0

An artisan command interface for generating Laravel repository pattern modules

  Sources   Download

MIT

The Requires

 

by Robb Fountain

laravel repository pattern

20/04 2018

v1.0

1.0.0.0

An artisan command interface for generating Laravel repository pattern modules

  Sources   Download

MIT

The Requires

 

by Robb Fountain

laravel backpack