
* #1 - project skeleton * #1 - composer fix * #1 - add app key to phpunit config * #1 - change default session driver * #1 - add EXTERNAL_WEBSERVER_PORT variable to .env.example
24 lines
546 B
PHP
24 lines
546 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Str;
|
|
|
|
class UserFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
"name" => $this->faker->name(),
|
|
"email" => $this->faker->unique()->safeEmail(),
|
|
"email_verified_at" => now(),
|
|
"password" => Hash::make("secret123"),
|
|
"remember_token" => Str::random(10),
|
|
];
|
|
}
|
|
}
|