-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing references for doctrin-migrations
- Loading branch information
Łukasz Serwatka
committed
Jul 1, 2019
1 parent
79a25be
commit 04692f4
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,31 @@ | |
<ini name="error_reporting" value="-1" /> | ||
<server name="APP_ENV" value="test" force="true" /> | ||
<server name="SHELL_VERBOSITY" value="-1" /> | ||
|
||
<!-- ###+ symfony/framework-bundle ### --> | ||
<env name="APP_ENV" value="dev"/> | ||
<env name="APP_SECRET" value="c3a36b3bf6ba89d5ee34c4d9893049df"/> | ||
<!-- env name="TRUSTED_PROXIES" value="127.0.0.1,127.0.0.2" --> | ||
<!-- env name="TRUSTED_HOSTS" value="'^localhost|example\.com$'" --> | ||
<!-- ###- symfony/framework-bundle ### --> | ||
|
||
<!-- ###+ doctrine/doctrine-bundle ### --> | ||
<!-- Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url --> | ||
<!-- For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db" --> | ||
<!-- Configure your db driver and server_version in config/packages/doctrine.yaml --> | ||
<env name="DATABASE_URL" value="mysql://db_user:[email protected]:3306/db_name"/> | ||
<!-- ###- doctrine/doctrine-bundle ### --> | ||
|
||
<!-- ###+ nelmio/cors-bundle ### --> | ||
<env name="CORS_ALLOW_ORIGIN" value="^https?://localhost(:[0-9]+)?$"/> | ||
<!-- ###- nelmio/cors-bundle ### --> | ||
|
||
<!-- ###+ symfony/swiftmailer-bundle ### --> | ||
<!-- For Gmail as a transport, use: "gmail://username:password@localhost" --> | ||
<!-- For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode=" --> | ||
<!-- Delivery is disabled by default via "null://localhost" --> | ||
<env name="MAILER_URL" value="null://localhost"/> | ||
<!-- ###- symfony/swiftmailer-bundle ### --> | ||
</php> | ||
|
||
<testsuites> | ||
|