Daniel Platt

Results 33 comments of Daniel Platt

I've just come across this issue and couldn't find any example config. I've managed to get it working by removing `doctrine_migrations` key. ``` migrations_paths: # namespace is arbitrary but should...

@greg0ire For me its the first path. ``` $rootNode = $treeBuilder->getRootNode(); ``` For reference this is the command I use to run the support migrations ``` bin/console doctrine:migrations:migrate --configuration=migration-support/doctrine_migration_support.yaml ```

Symfony creates a default config file for the migrations in `config/packages/doctrine_migrations.yaml`. ```yaml doctrine_migrations: migrations_paths: # namespace is arbitrary but should be different from App\Migrations # as migrations classes should NOT...

Thanks. What I've just realised is I think the only reason we have reactor-nette installed, is because it was in an original example. Therefore, I've removed it from our project.

I'm using composer to manage all my wordpress & plugins. See my comment in #11 to get a basic idea for just the plugin.

You're missing the [Symfony HttpKernel component](https://symfony.com/doc/current/components/http_kernel.html). Paste your ```composer.json``` if you need more help.

Can you paste in your ```composer.json``` and ```composer.lock``` file?

what mode are you running symfony in? if prod, you might have to clear your cache.

The only thing I can think of, is that your autoload.php isn't being called anywhere.