Michael Brauner

Results 40 comments of Michael Brauner

I created the [PR](https://github.com/symfony/maker-bundle/pull/881) ;) But why the tests all fail is a mystery to me. I created the database and migrated it. But all tests fail: ```shell michaelbrauner@Michaels-MacBook-Pro cardedu...

Ok. 1. I moved `SymfonyMakerBundle` outside of project root. 2. `composer install` was successfull 3. Yesterday I created a test database. I exported the vars: `symfony var:export` and copied the...

Thank you so much for giving me all this information. Actually yesterday I digged into MakeTestEnvironment.php and MakerTestCase.php and found out myself that there are created new symfony projects per...

Ok. Now I researched a while and I have the 4 projects inside my tmp directory and as I (and you) said - there is no DATABASE_URL inside by default...

So... is it possible to simply do: ``` ewz_recaptcha: version: 'v3' # defaults to v2 ```

This would be really great.

Ok, you mean it will be downloaded only once for sure?

I think that's totally fine. Every container will try to run migrations. As long as you have a single source of truth for your migrations (one database server for all...

Yes, that is of course possible: ```yaml php-worker: build: context: . target: frankenphp_dev image: ${IMAGES_PREFIX:-}app-php restart: unless-stopped command: php bin/console messenger:consume async -v environment: - RUN_MIGRATIONS=false ``` And then react...

```php /** @var ChoiceFormField $thirdOptionFormField */ $thirdOptionFormField = $form['cart[orders][0][productVariant][product][options][3][value]']; $thirdOptionFormField->disableValidation()->setValue( 'New value'); $client->submit($form); ``` That worked well for me.