precision-soft/doctrine-type

v1.0.1 2024-09-26 14:25 UTC

This package is auto-updated.

Last update: 2024-09-26 11:29:33 UTC


README

You may fork and modify it as you wish.

Any suggestions are welcomed.

Usage

  • extend \PrecisionSoft\Doctrine\Type\Contract\AbstractEnumType for enums.
  • extend \PrecisionSoft\Doctrine\Type\Contract\AbstractSetType for sets.

Symfony

doctrine:
    dbal:
        default_connection: master
        connections:
            master:
                url: '%env(resolve:DATABASE_URL)%'
                server_version: '%env(MYSQL_SERVER_VERSION)%'
                mapping_types:
                    enum: string
                    set: string
        types:
            datetime: \PrecisionSoft\Doctrine\Type\DateTimeType
            AcmeEnum: \App\Doctrine\Type\AcmeEnum
            AcmeSet: \App\Doctrine\Type\AcmeSet

Todo

  • Unit tests.

Dev

git clone git@gitlab.com:precision-soft-open-source/doctrine/type.git
cd type

./dc build && ./dc up -d