sukohi / celebrity-faker
A Laravel package to generate fake data using celebrity data.
1.0.0
2017-06-09 17:33 UTC
Requires
- laravel/framework: ~5.0
This package is not auto-updated.
Last update: 2024-11-10 03:31:06 UTC
README
A Laravel package to generate fake data using celebrity data.
Installation
Execute the next command.
composer require sukohi/CelebrityFaker:1.*
Set the service providers in app.php
'providers' => [
...Others...,
Sukohi\CelebrityFaker\CelebrityFakerServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'CelebrityFaker' => Sukohi\CelebrityFaker\Facades\CelebrityFaker::class,
]
Then execute the next commands.
php artisan vendor:publish
Config
After run the above command you should have a config file called celebrity_faker.php
in your config folder.
You can set csv file path(s) there.
About CSV file
CSV files need to have key in first line like so.
| name | birthday | gender_id | ...
Usage
for($i = 0; $i < 100; $i++){
// Get celebrity randomly
$celebrity = \CelebrityFaker::getCelebrity();
// Each
echo $celebrity->name;
echo $celebrity->name_kana;
echo $celebrity->gender_id;
echo $celebrity->height;
echo $celebrity->weight;
echo $celebrity->blood_type;
echo $celebrity->prefecture;
echo $celebrity->company;
// Array
print_r($celebrity->toArray());
}
License
This package is licensed under the MIT License.
Copyright 2017 Sukohi Kuhoh