If you run the command in verbose mode (-v), Symfony will display in the output a clickable link to the command profile (if your terminal supports links). If you run it in debug verbosity (-vvv) you'll also see the time and memory consumed by the command. The design of the command...
Next is the providers section. The providers is where we tell symfony2 how to retrieve users. We use the entity entry to tell symfony2 that we want to use the Doctrine Entity Provider. Other available providers are In-Memory Provider and Chain Provider. You can read about themhere. Under ...
You could, for example, add a connection option to your task:public function configure() { $this->addOption('connection', sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'doctrine'); } public function execute($arguments = array(), $options = array()) { $databaseManager = ...
To get the diff for a specific change, go tohttps://github.com/symfony/symfony/commit/XXXwhere XXX is the change hash To get the diff between two versions, go tohttps://github.com/symfony/symfony/compare/v7.1.0...v7.1.1 7.1.10 (2024-12-31) bug #59304 [PropertyInfo] Remove@interna...
bug #27143 [Console] By default hide the short exception trace line from exception messages in Symfony's commands (yceruto) bug #27133 [Doctrine Bridge] fix priority for doctrine event listeners (dmaicher) bug #27135 [FrameworkBundle] Use the correct service id for CachePoolPruneCommand ...
Next is the providers section. The providers is where we tell symfony2 how to retrieve users. We use the entity entry to tell symfony2 that we want to use the Doctrine Entity Provider. Other available providers are In-Memory Provider and Chain Provider. You can read about themhere. Under ...
feature #26647 [Messenger] Add a middleware that wraps all handlers in one Doctrine transaction. (Nyholm) feature #26668 [WebProfilerBundle] Live duration of AJAX request (ostrolucky) feature #26650 [Messenger] Clone messages to show in profiler (Nyholm) feature #26281 [FrameworkBundle] ke...
bug #48489 [DoctrineBridge] Skip resolving entities when the corresponding request attribute is already an object (nicolas-grekas) bug #48534 [FrameworkBundle] addkernel.locale_awaretag toLocaleSwitcher(kbond) bug #48521 [FrameworkBundle] fix removing commands if console not available (kbond)...
{ "symfony/console": "For helpful console commands such as SQL execution and import of files." }, "type": "library", "autoload": { "psr-4": { "Doctrine\\DBAL\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { ...
feature #54720 [Routing] Add{foo:bar}syntax to define a mapping between a route parameter and its corresponding request attribute (nicolas-grekas) feature #38662 [DoctrineBridge][Validator] Allow validating every class against unique entity constraint (wkania) ...