In order to ease work on the next version of fzaninotto/faker, it would be beneficial if we could set next as default branch.
Currently, master is the default branch.
The image generator generates random images correctly, but lorempixel.com has been down for a few days now.
http://lorempixel.com/
Is it possible to pull images from another source?
I wanted to request adding a rude words generator. The use case of the mentioned feature is something that is required for testing profanity detectors.
For me the interfaces will be something like:
$faker = Faker\Factory::create('en_US');
$faker->randomDirtyWords($numberOfWords = 2) ; // ["Fuck...
running composer install --no-dev
version 1.9.1
Results to this error:
In DatabaseServiceProvider.php line 88:
Class 'Faker\Factory' not found
I already delete all my migrations/seeders/factory and still having this error
In pull request #737 the default and en_US Address data provider was updated to not generate a building number 0, 00 or 000 anymore.
However, the bug still exists in multiple locales, e.g. de_CH or de_AT.
I think the fix should be applied to all locales, not only the default one and en_US.
I'm new to laravel and use fzaninotto/Faker for practice seeding and i got the error when i create the instance
$faker = Faker\Factory::create();
Error is: Undefined type 'Database\Seeders\Faker\Factory'.intelephense(1009)
Thanks!
Summary
zh_CN lose PhoneNumber TestCase & TollFreePhoneNumber API & E164PhoneNumber API
Versions
Version
PHP
any
fzaninotto/faker
any
Self-enclosed code snippet for reproduction
use Faker\Provider\zh_CN\PhoneNumber;
$faker = new Generator();
$faker = new PhoneNumbe...