aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/factories/Users.php
diff options
context:
space:
mode:
Diffstat (limited to 'main/app/sprinkles/account/factories/Users.php')
-rwxr-xr-xmain/app/sprinkles/account/factories/Users.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/main/app/sprinkles/account/factories/Users.php b/main/app/sprinkles/account/factories/Users.php
new file mode 100755
index 0000000..7390c44
--- /dev/null
+++ b/main/app/sprinkles/account/factories/Users.php
@@ -0,0 +1,23 @@
+<?php
+/**
+ * UserFrosting (http://www.userfrosting.com)
+ *
+ * @link https://github.com/userfrosting/UserFrosting
+ * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
+ */
+
+use League\FactoryMuffin\Faker\Facade as Faker;
+
+/**
+ * General factory for the User Model
+ */
+$fm->define('UserFrosting\Sprinkle\Account\Database\Models\User')->setDefinitions([
+ 'user_name' => Faker::unique()->firstNameMale(),
+ 'first_name' => Faker::firstNameMale(),
+ 'last_name' => Faker::firstNameMale(),
+ 'email' => Faker::unique()->email(),
+ 'locale' => 'en_US',
+ 'flag_verified' => 1,
+ 'flag_enabled' => 1,
+ 'password' => Faker::password()
+]);