Does skipper support Symfony Validation annotations?
Like, when selecting UQ (Unique contraint) on a field in skipper, it should have added for instance:
I add a Entity called Project and whant Project->title to be Unique.
...
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
....
/**
* @ORM\Entity(repositoryClass="AppBundle\Repository\ProjectRepository")
* @ORM\Table(name="project")
* @UniqueEntity("title")
*/
class Project {
...