Download the PHP package pablorsk/argentina-data-generator without Composer
On this page you can find all versions of the php package pablorsk/argentina-data-generator. 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-generator
Argentina Data Generator
Generate CBU and CUIT/CUIL
Installation
Add the ArgentinaDataGenerator library to your composer.json
file:
composer require pablorsk/argentina-data-generator --dev
Usage
Use the new ArgentinaDataGenerator\CuitFakerProvider
class in combination with Faker to produce CUIT numbers.
<?php
$faker = Faker\Factory::create();
$faker->addProvider(new \ArgentinaDataGenerator\CuitFakerProvider($faker));
for ($i=0; $i < 5; $i++) {
echo $faker->cuit, "\n";
}
This snippet generates 5 awesome CUIT/CUIL valid numbers. Here is an example output from CuitFaker:
20-48028763-1
33-25497340-3
33-35036407-8
20-12145175-2
33-37145386-0
Generators
\ArgentinaDataGenerator\CuitFakerProvider
cuit // 33-37145386-0
cuitNumber // 33371453860
dni // 37145386
\ArgentinaDataGenerator\CbuFakerProvider
cbu // 6999444785661157353820
All versions of argentina-data-generator with dependencies
PHP Build Version
Package Version
The package pablorsk/argentina-data-generator contains the following files
Loading the files please wait ....