maker-bundle
maker-bundle copied to clipboard
Symfony Maker Bundle
Hi, I recently prepared and organised workshops during the SymfonyLive Paris 2023 and noted that a few things could be enhanced in the `make:auth` command templates. * As the `NotCompromisedPassword`...
I'm suggesting to add this possible outcome to the wizard: ```php #[ORM\Column(nullable:true, enumType: Suit::class)] private ?Suit $suit = null; ``` Maybe via a dedicated `enum` entry in the types list,...
Related to #1225 @tacman Do you think this could fix your issue ? I've made the change only on scope related to `make:entity` for now, but i guess it can...
I need to create two different ManyToMany relationships between one entity. However, the makerbundle defaults to creating the relation table "entityAname_entityBname", so when trying to create the second ManyToMany relation...
Psalm is reporting this: > ERROR: LessSpecificImplementedReturnType - src/Repository/LinkRepository.php:8:12 - The inherited return type 'list' for Doctrine\ORM\EntityRepository::findAll is more specific than the implemented return type for Doctrine\ORM\EntityRepository::findall 'array' (see https://psalm.dev/166)...
Symfony version: 4.4 Maker bundle version: 1.39.0 The entity uses annotation mapping. I created the entity with older versions of maker bundle. ``` [ERROR] Only annotation or attribute mapping is...
Goal is to provide out of the box support for API Platform keeping REST & GraphQL capabilities intact. - [ ] support for Messenger - [ ] allow API Only...
I'm proposing the creation of a `make:form-data` command to create a Data Transfer Object, specifically for use with the Form component, that holds the data of your domain model (e.g....