Skip to content

Instantly share code, notes, and snippets.

@Konafets
Created December 16, 2018 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Konafets/7d75115b44501c736fff0f859df0e9ac to your computer and use it in GitHub Desktop.
Save Konafets/7d75115b44501c736fff0f859df0e9ac to your computer and use it in GitHub Desktop.
Sylius Doctrine Configuration
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: yml
dir: '%kernel.project_dir%/src/Resources/config/doctrine'
prefix: 'App\Entity'
alias: App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment