mediagone/common-types-doctrine

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

Provides Doctrine types for mediagone/common-types package.

0.4.0 2021-02-22 00:37 UTC

This package is auto-updated.

Last update: 2021-03-22 00:51:58 UTC


README

Latest Version on Packagist Total Downloads Software License

Provides Doctrine types for "mediagone/common-types" package.

Installation

This package requires PHP 7.4+ and Doctrine DBAL 2.7+

Add it as Composer dependency:

$ composer require mediagone/common-types-doctrine

With Symfony

If you're using this package in a Symfony project, register utilized custom types in doctrine.yaml:

doctrine:
    dbal:
        types:
            app_slug: Mediagone\Doctrine\Common\Types\Text\SlugType
            ...

Note: app_slug being the type name you'll use in your Entity mappings, you can pick whatever name you wish.

As standalone

Custom types can also be used separately, but need to be registered in Doctrine DBAL like this:

use Doctrine\DBAL\Types\Type;
use Mediagone\Doctrine\Common\Types\Text\SlugType;

Type::addType(SlugType::NAME, SlugType::class);
// or, with a custom name:
Type::addType('app_slug', SlugType::class);

License

Common Types for Doctrine is licensed under MIT license. See LICENSE file.