medjadji / laravel-repository-interface
This package is intended to create a Command to create a repository and an Interface at the same time
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/medjadji/laravel-repository-interface
Requires
README
This package is intended to create a Command to create a repository and an Interface
Installation
You can install the package via composer for latest version
$ composer require medjadji/laravel-repository-interface
How To Use
# Create a repository with interface at The Same Time
$ php artisan make:repository-interface Auth/User Auth/User
┌── apps
├─ └─ Repositories
├─ └──── Auth
├─ └─────── UserRepository.php
├─ └─ Interface
├─ └──── Auth
├─ └─────── UserInterface.php
├─ bootstrap
├─ config
├─ database
├─ public
├─ resources
├─ routs
├─ storage
├─ tests
├─ vendor
├─ .env.example
├─ artisan
├─ composer.json
├─ package.json
└── README.md
# Create a interface $ php artisan make:interface Company/Apply # Create a repository $ php artisan make:repository Company/Apply
┌── apps
├─ └─ Repositories
├─ └──── Company
├─ └─────── ApplyRepository.php
├─ └─ Interface
├─ └──── Company
├─ └─────── ApplyInterface.php
├─ bootstrap
├─ config
├─ database
├─ public
├─ resources
├─ routs
├─ storage
├─ tests
├─ vendor
├─ .env.example
├─ artisan
├─ composer.json
├─ package.json
└── README.md