Download the PHP package pablorsk/argentina-data-validator without Composer
On this page you can find all versions of the php package pablorsk/argentina-data-validator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package argentina-data-validator
Argentina Data Validator
Validate Argentina CBU and CUIT/CUIL
Installation
Add the ArgentinaDataGenerator library to your composer.json
file:
composer require pablorsk/argentina-data-validator
Usage
Without framework
<?php
echo \ArgentinaDataValidator\Cuit::isValid(20305423174)) ? 'valido' : 'no valido'; // valido
Laravel
<?php
public function store(Request $request)
{
$validatedData = $request->validate([
'cuit' => 'cuit',
]);
// The entity post is valid...
}
All versions of argentina-data-validator with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1
The package pablorsk/argentina-data-validator contains the following files
Loading the files please wait ....