Getting Started
Integrations
Integrations on Xefi Faker PHP
Laravel
Faker PHP integrates fully with Laravel, first you need to require the compatibility package:
composer require --dev xefi/faker-php-laravel
After that, faker is ready to use with the faker
helper:
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
/**
* The current password being used by the factory.
*/
protected static ?string $password;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => faker()->name(),
'email' => faker()->unique()->email(),
];
}
}
Symfony
TODO