kisphp/faker

Fake data generator inspired by fzaninotto/faker

Maintainers

Details

gitlab.com/kisphp/faker

Source

Issues

Installs: 105

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/kisphp/faker

0.1.1 2021-10-20 10:52 UTC

This package is auto-updated.

Last update: 2025-10-05 18:59:24 UTC


README

pipeline status coverage report

This is the core library of kisphp/faker. Please install kisphp/faker-{locale} instead

Installation

composer require kisphp/faker-en

Usage

<?php

require '/path/to/vendor/autoload.php';

$faker = \Kisphp\Faker\Factory::create();

// get a masculine name
echo $faker->person->firstNameMale;

// get a feminine name
echo $faker->person->firstNameFemale;

// get a random paragraph (generated from LoremIpsum)
echo $faker->text->randomParagraph();