PHP Package: fzaninotto/faker

Faker is a PHP library for generating fake data such as names, addresses, emails, and more for testing and development purposes.

Current Version: 1.9.2
Last Updated: 2020-12-11
PHP Requirement: ^5.3.3 || ^7.0
Dependencies: None

Package Description

Faker is a PHP library that generates fake data like names, addresses, emails, and more. It provides a convenient way to populate databases with various mock data. Faker is widely used in test data generation, data anonymization, and other development scenarios where realistic but not real data is required.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 1.9.2

Download Download v1.9.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com

require_once 'libs/fzaninotto/faker/1.9.2/loader.php';
use Faker\Provider\Address;
use Faker\Provider\Person;

$obj = new Address();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.