laravel-validate-mysql-integers maintained by rackbeat
Description
Validation Rule to ensure a value is within valid Mysql Integer ranges.
Authors
Last update
2022/11/26 09:33
(dev-master)
License
Downloads
40 016
Validation Rule to ensure a value is within valid Mysql Integer ranges.
Works for signed and unsigned integers of type: TinyInt, SmallInt, Int, BigInt.
Installation
You just require using composer and you're good to go!
composer require rackbeat/laravel-validate-mysql-integers
The Service Provider is automatically registered.
Usage
Class
Rackbeat\Rules\TinyIntegerRackbeat\Rules\SmallIntegerRackbeat\Rules\IntegerRackbeat\Rules\BigInteger
'number' => [
new Rackbeat\Rules\BigInteger($unsigned = true),
],
Helper
The helpers are prefixed with "real_" to prevent overlapping.
It can take an optional parameter to determine if its unsigned. Defaults to false.
real_tiny_intreal_small_intreal_intreal_big_int
'id' => ['real_tiny_int:1'], // unsigned
'number' => ['real_tiny_int:0'], // signed
Requirements
- PHP >= 7.1