matmper/laravel-repository-release

Package to simplify the use of repositories in Laravel

1.0.2 2024-04-13 05:39 UTC

This package is auto-updated.

Last update: 2024-09-13 06:39:56 UTC


README

Package to simplify the use of database repositories in Laravel

PRs Welcome Packagist Github Actions License MIT

Dependences

  • PHP >= 8.0.2 (Doc)
  • Laravel >= 9.1.15 (Doc)

Install

Install this database srepository in your vendor path:

# install package
$ composer require matmper/laravel-repository-release

# publish package
$ php artisan vendor:publish --provider="Matmper\Providers\RepositoryProvider"

Usage

Create new repository file

# create single model repository file
$ php artisan repository:create User

# create all pending model repositories files
$ php artisan repository:create all

Documentation

Access: laravel-repository-release

Contribution & Development

This is an open source code, free for distribution and contribution. All contributions will be accepted only with Pull Request and that pass the test and code standardization.

Run composer install in yout development env:

$ composer install --dev --prefer-dist

Now you can use composer check in your terminal.