drupol/belgian-national-number-faker

Belgian national number faker generator using fzaninotto/faker.

1.1.3 2019-12-20 16:14 UTC

This package is auto-updated.

Last update: 2024-04-21 02:33:12 UTC


README

Latest Stable Version GitHub stars Total Downloads GitHub Workflow Status Scrutinizer code quality Code Coverage Mutation testing badge License Say Thanks! Donate!

Belgian national number faker

Description

Belgian national number generator using fzaninotto/faker.

Requirements

  • PHP >= 7.1

Installation

composer require --dev drupol/belgian-national-number-faker

Usage

With regular PHP

<?php

declare(strict_types = 1);

include 'vendor/autoload.php';

use drupol\BelgianNationalNumberFaker\Provider\BelgianNationalNumber;
use Faker\Generator;

$faker = new BelgianNationalNumber(new Generator());

echo $faker->belgianNationalIdentificationNumber();

Integration with Symfony

Through nelmio/alice and hautelook/alice-bundle:

Edit the file services.yml and add:

services:
  drupol\BelgianNationalNumberFaker\Provider\BelgianNationalNumber:
    tags: [ { name: nelmio_alice.faker.provider } ]

Code quality, tests and benchmarks

Every time changes are introduced into the library, Github run the tests and the benchmarks.

The library has tests written with PHPSpec. Feel free to check them out in the spec directory. Run composer phpspec to trigger the tests.

Before each commit some inspections are executed with GrumPHP, run ./vendor/bin/grumphp run to check manually.

Contributing

Feel free to contribute to this library by sending Github pull requests. I'm quite reactive :-)