drupol / belgian-national-number-faker
Belgian national number faker generator using fzaninotto/faker.
Fund package maintenance!
drupol
Requires
- php: >= 7.1
Requires (Dev)
- drupol/php-conventions: ^1.6.8
- friends-of-phpspec/phpspec-code-coverage: ^4
- fzaninotto/faker: ^1.6
- infection/infection: ^0.13.6
- phpspec/phpspec: ^5.1.2 || ^6.1
- phpstan/phpstan-strict-rules: ^0.12
- phptaskman/changelog: ^1
README
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 :-)