ajgl/doctrine-dbal-pgsql-types

Custom PostgreSQL types

0.4.1 2024-04-03 07:42 UTC

This package is auto-updated.

Last update: 2024-04-03 07:42:43 UTC


README

This component allows you to manage some native PostgreSQL data types with the Doctrine DBAL component.

Usage

To use the new types you shoud register them using the Custom Mapping Types feature.

\Doctrine\DBAL\Types\Type::addType('integer[]', 'Ajgl\Doctrine\DBAL\Types\IntegerArrayType');
/* @var $connection \Doctrine\DBAL\Connection */
$connection->getDatabasePlatform()->registerDoctrineTypeMapping('_int4', 'integer[]');

Usage with Symfony Standard Edition

If you want to use this with a Symfony Standard Edition application, you can register the new types in the config.yml file.

doctrine:
    dbal:
        types:
            integer[]: Ajgl\Doctrine\DBAL\Types\IntegerArrayType
        mapping_types:
            _int4: integer[]

License

This component is under the MIT license. See the complete license in the LICENSE file.

Badges

  • GitHub Actions: Build Status
  • Poser Latest Stable Version: Latest Stable Version
  • Poser Latest Unstable Version Latest Unstable Version
  • Poser Total Downloads Total Downloads
  • Poser Monthly Downloads Montly Downloads
  • Poser Daily Downloads Daily Downloads
  • Poser License License
  • SensionLabs Insight Quality SensioLabsInsight

About

AjglDoctrineDbalPgsqlTypes is an ajgarlag initiative.

Reporting an issue or a feature request

Issues and feature requests are tracked in the Github issue tracker.