maker-bundle
maker-bundle copied to clipboard
Symfony Maker Bundle
- 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...
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":...
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...
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
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":...
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:  I've had this...
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`...
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...