maker-bundle icon indicating copy to clipboard operation
maker-bundle copied to clipboard

Symfony Maker Bundle

Results 166 maker-bundle issues
Sort by recently updated
recently updated
newest added

This PR has been merged a few days ago : https://github.com/symfony/symfony/pull/50946 We now don't need to make a controller to match the logout path, we just need to register a...

Symfony version: 6.3 Maker bundle version: v1.51.1 Doctrine ORM version: 2.16.2 Regenerating entities create traits fields as well (e.g: StofDoctrineExtensionsBundle Timestampable). The problem comes from Doctrine returning metadata with reflClass...

In my directories structure is something like this: - My entities are located in `src/Infrastructure/Doctrine/Entity` - Repositories in `src/Infrastructure/Doctrine/Repository` My config: ```yaml doctrine: orm: auto_generate_proxy_classes: true naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware auto_mapping: true...

During a Symfony training @Tiriel discovered an issue with the MakerBundle & Auth. When choosing "remember me" and "checkbox" for the always remember me, MakerBundle always generates a "always_remember_me: true"...

I love the `make:entity` command. However, if I could define default values, I'd like it even more. This default values should be set for the initalization of php property in...

Adds Bootstrap's `form-label` class to the login form (consistent with the other Bootstrap classes e.g. `form-control`)

In the setup method, the manager wasn't initialized, and no object were being remove because the manager wasn't getting flushed.

Allow adding the cascade annotation option for OneToMany, ManyToOne and ManyToMany relation in ClassSourceManipulator. The OneToOne remains forced to ['persist', 'remove'] Related issue : https://github.com/symfony/maker-bundle/issues/1316

Imagine that you want to create a controller in different directory, and entities in another. How could you achieve this through the config? This is sort of what I imagined:...