PHP Package: mbezhanov/faker-provider-collection
A comprehensive collection of Faker providers for generating realistic fake data in PHP applications.
Package Description
Faker Provider Collection is a powerful PHP library that extends Faker with a wide array of providers, facilitating the creation of diverse and authentic mock data. With an extensive range of functions, this library simplifies the generation of random yet coherent information, enhancing the testing and development processes of PHP projects.
Download Latest Version: 2.0.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/mbezhanov/faker-provider-collection/2.0.2/loader.php';
require_once 'libs/fzaninotto/faker/1.9.2/loader.php';
use Faker\Generator;
use Mbezhanov\Faker\Provider\Color;
use Mbezhanov\Faker\Provider\Person;
$obj = new Generator();
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.