mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			823 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			823 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
use Faker\Generator as Faker;
 | 
						|
 | 
						|
/*
 | 
						|
|--------------------------------------------------------------------------
 | 
						|
| Model Factories
 | 
						|
|--------------------------------------------------------------------------
 | 
						|
|
 | 
						|
| This directory should contain each of the model factory definitions for
 | 
						|
| your application. Factories provide a convenient way to generate new
 | 
						|
| model instances for testing / seeding your application's database.
 | 
						|
|
 | 
						|
*/
 | 
						|
 | 
						|
$factory->define(App\User::class, function (Faker $faker) {
 | 
						|
    return [
 | 
						|
        'name' => $faker->name,
 | 
						|
        'username' => str_replace('.', '', $faker->unique()->userName),
 | 
						|
        'email' => str_random(8).$faker->unique()->safeEmail,
 | 
						|
        'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
 | 
						|
        'remember_token' => str_random(10),
 | 
						|
    ];
 | 
						|
});
 |