We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently within Symfony Flex projects doctrine configuration is like:
doctrine: dbal: url: '%env(DATABASE_URL)%'
Where this DATABASE_URL env is eg. mysql://[email protected]:3306/symfony?charset=utf8mb4&serverVersion=5.7
DATABASE_URL
mysql://[email protected]:3306/symfony?charset=utf8mb4&serverVersion=5.7
With this database creations won't work as expected because of https://github.com/liuggio/fastest/blob/master/adapters/Doctrine/DBAL/ConnectionFactory.php#L27-L31
The text was updated successfully, but these errors were encountered:
@tarlepp could you try to work on this?
Sorry, something went wrong.
tests: Workaround to get fastest library to work with Symfony Flex.…
fastest
49d3f9e
… See liuggio/fastest#101
I got around this by not using the url parameter:
url
url: ~ dbname: test_app host: 127.0.0.1 user: root password: root
However, I still had a problem with missing phpunit dependencies because phpunit is installed separately by symfony phpunit-bridge 😢
No branches or pull requests
Currently within Symfony Flex projects doctrine configuration is like:
Where this
DATABASE_URL
env is eg.mysql://[email protected]:3306/symfony?charset=utf8mb4&serverVersion=5.7
With this database creations won't work as expected because of https://github.com/liuggio/fastest/blob/master/adapters/Doctrine/DBAL/ConnectionFactory.php#L27-L31
The text was updated successfully, but these errors were encountered: