Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

56 lines
4.2KB

  1. doctrine:
  2. dbal:
  3. # IMPORTANT: DATABASE_URL *must* define the server version
  4. url: '%env(resolve:DATABASE_URL)%'
  5. orm:
  6. auto_generate_proxy_classes: true
  7. naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
  8. auto_mapping: true
  9. mappings:
  10. App:
  11. is_bundle: false
  12. type: annotation
  13. dir: '%kernel.project_dir%/src/Entity'
  14. prefix: 'App\Entity'
  15. alias: App
  16. resolve_target_entities:
  17. Lc\SovBundle\Model\User\UserInterface: App\Entity\User\User
  18. Lc\SovBundle\Doctrine\Extension\FileInterface: App\Entity\File\File
  19. Lc\CaracoleBundle\Model\Address\AddressInterface: App\Entity\Address\Address
  20. Lc\CaracoleBundle\Model\Common\TaxRateInterface: App\Entity\Common\TaxRate
  21. Lc\CaracoleBundle\Model\Common\UnitInterface: App\Entity\Common\Unit
  22. Lc\CaracoleBundle\Model\Credit\CreditConfigInterface: App\Entity\Credit\CreditConfig
  23. Lc\CaracoleBundle\Model\Credit\CreditHistoryInterface: App\Entity\Credit\CreditHistory
  24. Lc\CaracoleBundle\Model\File\DocumentInterface: App\Entity\File\Document
  25. Lc\CaracoleBundle\Model\Merchant\MerchantConfigInterface: App\Entity\Merchant\MerchantConfig
  26. Lc\CaracoleBundle\Model\Merchant\MerchantInterface: App\Entity\Merchant\Merchant
  27. Lc\CaracoleBundle\Model\Newsletter\NewsletterInterface: App\Entity\Newsletter\Newsletter
  28. Lc\CaracoleBundle\Model\Order\OrderPaymentInterface: App\Entity\Order\OrderPayment
  29. Lc\CaracoleBundle\Model\Order\OrderProductInterface: App\Entity\Order\OrderProduct
  30. Lc\CaracoleBundle\Model\Order\OrderProductReductionCatalogInterface: App\Entity\Order\OrderProductReductionCatalog
  31. Lc\CaracoleBundle\Model\Order\OrderProductRefundInterface: App\Entity\Order\OrderProductRefund
  32. Lc\CaracoleBundle\Model\Order\OrderReductionCartInterface: App\Entity\Order\OrderReductionCart
  33. Lc\CaracoleBundle\Model\Order\OrderReductionCreditInterface: App\Entity\Order\OrderReductionCredit
  34. Lc\CaracoleBundle\Model\Order\OrderRefundInterface: App\Entity\Order\OrderRefund
  35. Lc\CaracoleBundle\Model\Order\OrderShopInterface: App\Entity\Order\OrderShop
  36. Lc\CaracoleBundle\Model\Order\OrderStatusHistoryInterface: App\Entity\Order\OrderStatusHistory
  37. Lc\CaracoleBundle\Model\Order\OrderStatusInterface: App\Entity\Order\OrderStatus
  38. Lc\CaracoleBundle\Model\PointSale\PointSaleDayInfoInterface: App\Entity\PointSale\PointSaleDayInfo
  39. Lc\CaracoleBundle\Model\PointSale\PointSaleInterface: App\Entity\PointSale\PointSale
  40. Lc\CaracoleBundle\Model\Product\ProductCategoryInterface: App\Entity\Product\ProductCategory
  41. Lc\CaracoleBundle\Model\Product\ProductFamilyInterface: App\Entity\Product\ProductFamily
  42. Lc\CaracoleBundle\Model\Product\ProductInterface: App\Entity\Product\Product
  43. Lc\CaracoleBundle\Model\Reduction\ReductionCartInterface: App\Entity\Reduction\ReductionCart
  44. Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface: App\Entity\Reduction\ReductionCatalog
  45. Lc\CaracoleBundle\Model\Reduction\ReductionCreditInterface: App\Entity\Reduction\ReductionCredit
  46. Lc\CaracoleBundle\Model\Reminder\ReminderInterface: App\Entity\Reminder\Reminder
  47. Lc\CaracoleBundle\Model\Section\SectionInterface: App\Entity\Section\Section
  48. Lc\CaracoleBundle\Model\Site\NewsInterface: App\Entity\Site\News
  49. Lc\CaracoleBundle\Model\Site\PageInterface: App\Entity\Site\Page
  50. Lc\CaracoleBundle\Model\Ticket\TicketInterface: App\Entity\Ticket\Ticket
  51. Lc\CaracoleBundle\Model\Ticket\TicketMessageInterface: App\Entity\Ticket\TicketMessage
  52. Lc\CaracoleBundle\Model\User\GroupUserInterface: App\Entity\User\GroupUser
  53. Lc\CaracoleBundle\Model\User\UserMerchantInterface: App\Entity\User\UserMerchant
  54. Lc\CaracoleBundle\Model\User\UserInterface: App\Entity\User\User
  55. Lc\CaracoleBundle\Model\User\UserPointSaleInterface: App\Entity\User\UserPointSale
  56. Lc\CaracoleBundle\Model\User\VisitorInterface: App\Entity\User\Visitor