You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now user cannot declare connection options.
Reason is that always 'connection' => 'url' was set which dbal always prefers over other
connection settings. With this fix connection can be defined dbal compliant like this:
connection:
host: 'localhost'
port: '3306'
dbname: 'app'
user: 'app'
password: ''
'dsn only' works like before.
0 commit comments