Dutch specific extensions for Faker
composer require fakerphp/dutch
Full documentation can be found over on fakerphp.github.io.
Use Faker\Dutch\Factory::netherlands()
or Faker\Dutch\Factory::belgium()
to create and initialize a Faker generator with Dutch extensions.
require_once 'vendor/autoload.php';
// use the factory to create a Faker\Generator instance
$faker = Faker\Dutch\Factory::netherlands();
echo $faker->name();
// 'Piet de Vries';
Faker is released under the MIT License. See LICENSE
for details.