janynne / fake-data-arrays
Tenha dados para testar suas aplicações de forma offline
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/janynne/fake-data-arrays
Requires
- php: >7.0
This package is auto-updated.
Last update: 2025-12-21 23:35:56 UTC
README
Fake Data Arrays for offline testing in dev enviroments
How to use:
#1 - Add the dependence to your composer.json file
"require": {
"janynne/fake-data-arrays": "dev-master"
}
#2 - Add the autoloader include on your page
require __DIR__.'/vendor/autoload.php';
#3 - Import the namespace and create the object to use the getPeople($count) function
use Janynne\FakeData\FakeDataArrays;
$fakeObj = new FakeDataArrays();
var_dump($fakeObj->getPeople(10));