Created
December 16, 2018 19:36
-
-
Save Konafets/b238a2b41e02069604088946e07c6b14 to your computer and use it in GitHub Desktop.
Sylius Doctrine Config Annotation
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
parameters: | |
# Adds a fallback DATABASE_URL if the env var is not set. | |
# This allows you to run cache:warmup even if your | |
# environment variables are not available yet. | |
# You should not need to change this value. | |
env(DATABASE_URL): '' | |
doctrine: | |
dbal: | |
driver: 'pdo_mysql' | |
server_version: '%env(resolve:DATABASE_SERVER_VERSION)%' | |
charset: UTF8 | |
url: '%env(resolve:DATABASE_URL)%' | |
orm: | |
auto_generate_proxy_classes: '%kernel.debug%' | |
naming_strategy: | |
doctrine.orm.naming_strategy.underscore | |
auto_mapping: true | |
mappings: | |
App: | |
is_bundle: false | |
type: annotation | |
dir: '%kernel.project_dir%/src/Entity' | |
prefix: 'App\Entity' | |
alias: App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment