zoddo/dateinterval-bundle

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

A Symfony bundle for the DateInterval library for Doctrine.

v1.0.0 2015-03-14 22:29 UTC

This package is not auto-updated.

Last update: 2022-02-05 03:25:01 UTC


README

A Symfony bundle for the DateInterval library for Doctrine.

Summary

The bundle will automatically

  • register the dateinterval Doctrine mapping type
  • add the DATE_INTERVAL DQL function

to the default entity manager (doctrine.orm.entity_manager).

Installation

Add it to your list of Composer dependencies:

$ composer require zoddo/dateinterval-bundle=1.* herrera-io/doctrine-dateinterval=dev-master@dev

Add it to your app/AppKernel.php file:

<?php

public function registerBundles()
{
    $bundles = array(
        // ... snip ...
        new Herrera\Symfony\DateInterval\DateIntervalBundle()
        // ... snip ...
    );
}

Usage

In your entities

<?php

class MyEntity
{
    /**
     * @ORM\Column(type="dateinterval")
     */
    private $interval;
}

In your queries

SELECT j FROM Jobs j WHERE j.interval < DATE_INTERVAL('PT1H')