2017 © Pedro Peláez
 

library doctrine-point-type

image

vinyvicente/doctrine-point-type

  • Wednesday, May 2, 2018
  • by vinyvicente
  • Repository
  • 1 Watchers
  • 3 Stars
  • 234 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 157 % Grown

The README.md

Point Type

Point Type to Doctrine2, (*1)

CI codecov Packagist Version Total Downloads GitHub Downloads (all assets, latest release) License composer.lock available, (*2)

Versions:

Version PHP Version
1.* 7.0
2.* 7.1 or higher
3.* 7.4 or higher
4.* 8.2 or higher
5.* 8.2 or higher (Symfony 7)

How to use

First, composer install:, (*3)

composer require vinyvicente/doctrine-point-type

After, add in your bootstrap:, (*4)

use Doctrine\DBAL\Types\Type;
use Viny\PointType;

$em = YourEntityManager();

Type::addType('point', PointType::class);

// in case without Symfony :)
$em->getConnection()->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'point');

Or add it in your app/config yml files, (*5)

doctrine:
    dbal:
        types:
            point: Viny\PointType
        default_connection: default
        connections:
            default:
                driver: pdo_mysql
                host: '%database_host%'
                port: '%database_port%'
                dbname: '%database_name%'
                user: '%database_user%'
                password: '%database_password%'
                charset: UTF8
                mapping_types:
                    point: point

Symfony Normalization is supported, just add the tag in your app/services yml file, (*6)

services:
  Viny\PointNormalizer:
    tags: ['serializer.normalizer']

Enjoy!

The Versions

02/05 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vinicius

02/05 2018

v1.1

1.1.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vinicius

02/05 2018

dev-feature/keep-updates

dev-feature/keep-updates

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vinicius

18/02 2017

1.0.1

1.0.1.0

  Sources   Download

MIT

The Requires

 

by Vinicius

11/11 2016

1.0

1.0.0.0

  Sources   Download

The Requires

 

by Vinicius