Skip to content

3.2.0

Compare
Choose a tag to compare
@gordalina gordalina released this 23 Sep 00:01
· 65 commits to master since this release
a211caa

Features

Deprecations

  • In your config file replace
Symfony\Component\Security\Core\User\UserInterface:
  id: username
  email: email
App\Entity\User:
  id: id
  first_name: first_name
  last_name: last_name
  email: email
  phone: phone

By

Symfony\Component\Security\Core\User\UserInterface:
  id: username
  $email: email
App\Entity\User:
  id: id
  $first_name: first_name
  $last_name: last_name
  $email: email
  $phone: phone