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

- Instead of throwing an exception if `$isLiveComponent` but `ux-live-component` isn't installed, let's ask if they want us to run composer for them... On Success (keep it clean with no...

Feature
Status: Needs Work

I want to use `php bin/console make:user` as in https://symfony.com/doc/current/security.html#the-user. My composer.json: ```` { "require": { "symfony/runtime": "^6.2", "symfony/http-kernel": "^6.2", "symfony/framework-bundle": "^6.2", "symfony/console": "^6.2" }, "require-dev": { "phpunit/phpunit": "^9.5", "symfony/maker-bundle":...

Feature
Status: Reviewed
HasPR

It seems entity generator is unable to handle enums. On an existing entity class ``` #[ORM\Entity] class MyEntity { // ... #[ORM\Column(nullable: false)] protected MyEntityType $type; // ... ``` `make:entity...

Feature

i use mongodb in database, when i use the commnd php bin/console make:reset-password i see this problem In AbstractManagerRegistry.php line 158: Doctrine ORM Manager named "" does not exist.make:reset-password

Bug
Status: Reviewed
duplicate

I want to use `make:user` as in https://symfony.com/doc/current/security.html#the-user. I have PHP 8.1.11. My composer.json: ```` { "require": { "symfony/runtime": "^6.2", "symfony/http-kernel": "^6.2", "symfony/framework-bundle": "^6.2", "symfony/console": "^6.2", "doctrine/doctrine-bundle": "^2.8" }, "require-dev":...

Bug

I have an existing App\Entity\AppConfigSetting class, and now want to make App\Entity\AppConfig. Attempting make:entity with the non-existing "AppConfig" class gives me the following behavior: ![Screenshot 2021-01-24 103923](https://user-images.githubusercontent.com/1403262/105637033-d894be80-5e30-11eb-8b72-3278d91179ea.jpg) I've had this...

Bug
duplicate

I know that `Repository` isn't THE BEST name for an entity, but I found that `make:entity` have problem with generation of such. Maker creates Repository called `Repository` instead of `RepositoryRepository`...

Bug
Good First Issue
HasPR

I'm pleased to see that postgres is the default database for the recipe when installing doctrine-bundle. JSONB has been available since postgres 9.4, released in 2014. It's hard to imagine...

Feature
Status: Needs Review