Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/patrikgrinsvall/faker-fantasy

Fantasy names and locales in faker
https://github.com/patrikgrinsvall/faker-fantasy

Last synced: about 1 month ago
JSON representation

Fantasy names and locales in faker

Awesome Lists containing this project

README

        

# faker-fantasy
WIP - so far only words function works

Fantasy names and locales in fakerphp. Works with vanilla php and with laravel

usage vanilla:
```
use Faker\Factory;
use Patrikgrinsvall\FakerFantasy\FantasyProvider;

$faker = Factory::create('fantasy');
$faker->addProvider(new FantasyProvider($faker));
$faker->word();
```