2017 © Pedro Peláez
 

library eloquent-presence-verifier

An eloquent presence verifier implementation

image

melihovv/eloquent-presence-verifier

An eloquent presence verifier implementation

  • Sunday, February 11, 2018
  • by melihovv
  • Repository
  • 1 Watchers
  • 1 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Eloquent Presence Verifier

GitHub Workflow Status styleci, (*1)

Packagist Packagist Packagist, (*2)

Perform presence verification through eloquent Model class instead of DB facade., (*3)

Motivation

Awesome package for database query caching spiritix/lada-cache demands that all database queries should be ran from Eloquent Model subclasses which has LadaCacheTrait. But if you use some of the following validations rules exists:users,id or unique:users,email Laravel run queries through DB facade., (*4)

Installation

Install via composer, (*5)

composer require melihovv/eloquent-presence-verifier

Publish Configuration File

php artisan vendor:publish --provider="Melihovv\EloquentPresenceVerifier\ServiceProvider" --tag="config"

In this config you can specify custom model though which all queries will be send. For spiritix/lada-cache users:, (*6)

  • create App\Models\TempModel
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class TempModel extends Model
{
    use \Spiritix\LadaCache\Database\LadaCacheTrait;
}
  • specify created model in config/eloquent-presence-verifier
return [
    'model' => \App\Models\TempModel::class,
];

Usage

You don't need to do anything. All is done in this package service provider: EloquentPresenceVerifier is set as default presence verificator instead of DatabasePresenceVerifier., (*7)

Security

If you discover any security related issues, please email amelihovv@ya.ru instead of using the issue tracker., (*8)

Credits

This package is bootstrapped with the help of melihovv/laravel-package-generator., (*9)

The Versions

11/02 2018

dev-master

9999999-dev

An eloquent presence verifier implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Melihov

laravel validation eloquent verifier presence

10/02 2018

0.2.0

0.2.0.0

An eloquent presence verifier implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Melihov

laravel validation eloquent verifier presence

15/09 2017

0.1.0

0.1.0.0

An eloquent presence verifier implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Melihov

laravel validation eloquent verifier presence