ruvents/doctrine-fixes-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

RUVENTS Doctrine Fixes Bundle

0.1.1 2017-11-07 14:01 UTC

This package is not auto-updated.

Last update: 2020-08-21 22:15:00 UTC


README

Installation

  1. Install the package via composer:

    $ composer require ruvents/doctrine-fixes-bundle:~0.1.0
  2. Register the bundle:

    <?php
    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles = [
                // ...
                new Ruvents\DoctrineFixesBundle\RuventsDoctrineFixesBundle(),
            ];
        }
    }

Configuration

# app/Resources/config.yml

ruvents_doctrine_fixes:
    # connection name
    default:
        # all fixes are disabled by default and can be enabled with null
        schema_namespace_fix: ~
    
    another_connection:
        # ...

Fixes

Schema namespace fix (doctrine/dbal#1110)

        # ...
        schema_namespace_fix:
            # namespace is null by default
            # $platform->getDefaultSchemaName() is used in this case
            namespace: 'public'