Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 412 Bytes

File metadata and controls

24 lines (19 loc) · 412 Bytes

Doctrine Postgres Type Bundle

Installation

Run from terminal:

composer require garak/doctrine-postgres-types-bundle

Unless you're using Flex, enable bundle in the kernel:

<?php
// app/AppKernel.php
public function registerBundles()
{
    $bundles = 
        // ...
        new Garak\DoctrinePostgresTypesBundle\DoctrinePostgresTypesBundle(),
    ];
}