arokettu/date-doctrine

Doctrine support for arokettu/date

2.1.0 2024-03-29 12:36 UTC

This package is auto-updated.

Last update: 2024-04-29 12:45:08 UTC


README

Packagist PHP License Gitlab CI Codecov

arokettu/date row classes and ID generators for Doctrine.

Usage

<?php

use Arokettu\Date\Date;
use Doctrine\ORM\Mapping\{Column,Table};

#[Entity, Table(name: 'date_object')]
class DateObject
{
    #[Column(type: DateType::NAME)]
    public Date $date;
}

Installation

composer require arokettu/date-doctrine
  • Version 1.x is for doctrine/dbal v3
  • Version 2.x is for doctrine/dbal v4

The versions are fully interchangeable except for hard dependency on DBAL.

Documentation

Read full documentation for the base library here: https://sandfox.dev/php/date.html

Also on Read the Docs: https://php-date.readthedocs.io/

Support

Please file issues on our main repo at GitLab: https://gitlab.com/sandfox/php-date/-/issues

Feel free to ask any questions in our room on Gitter: https://gitter.im/arokettu/community

License

The library is available as open source under the terms of the MIT License.