composer: upgrade dependencies (#3427)

This commit is contained in:
Matthew Penner
2021-07-11 11:27:15 -06:00
committed by GitHub
parent 1260965dfd
commit d33522c857
7 changed files with 789 additions and 649 deletions

View File

@@ -26,8 +26,8 @@ class UserFactory extends Factory
return [
'external_id' => $this->faker->unique()->isbn10,
'uuid' => Uuid::uuid4()->toString(),
'username' => $this->faker->userName,
'email' => $this->faker->safeEmail,
'username' => $this->faker->unique()->userName,
'email' => $this->faker->unique()->safeEmail,
'name_first' => $this->faker->firstName,
'name_last' => $this->faker->lastName,
'password' => $password ?: $password = bcrypt('password'),