rackbeat/laravel-validate-mysql-integers

Validation Rule to ensure a value is within valid Mysql Integer ranges.
42,254 5
Install
composer require rackbeat/laravel-validate-mysql-integers
Latest Version:2.1
PHP:>=7.1
License:MIT
Last Updated:Sep 3, 2026
Links: GitHub  ·  Packagist
Maintainer: lasserafn

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\TinyInteger
  • Rackbeat\Rules\SmallInteger
  • Rackbeat\Rules\Integer
  • Rackbeat\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_int
  • real_small_int
  • real_int
  • real_big_int
'id'        => ['real_tiny_int:1'], // unsigned
'number'    => ['real_tiny_int:0'], // signed

Requirements

  • PHP >= 7.1

Contributors

Related Packages

codezero/laravel-unique-translation

Check if a translated value in a JSON column is unique in the database.

1,101,358 188
fadion/rule

An expressive validation rule builder for Laravel.

1,145 13
jenky/smart-rule

Laravel smart validation rules

109 0
timacdonald/rule-builder

A fluent rule builder for Laravel validation rule generation.

8,178 101
illuminatech/validation-composite

Allows uniting several validation rules into a single one for easy re-usage

565,812 180