Download the PHP package medjadji/laravel-repository-interface without Composer
On this page you can find all versions of the php package medjadji/laravel-repository-interface. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download medjadji/laravel-repository-interface
More information about medjadji/laravel-repository-interface
Files in medjadji/laravel-repository-interface
Package laravel-repository-interface
Short Description This package is intended to create a Command to create a repository and an Interface at the same time
License MIT
Informations about the package laravel-repository-interface
laravel-repository-interface
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
How To Use
┌── 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
┌── 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