yethee/date-form-bundle

This bundle fixed issue with timezone Europe/Moscow when used ICU < 54.1

Installs: 36

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

0.1.0 2015-10-28 16:03 UTC

This package is auto-updated.

Last update: 2024-04-14 07:08:10 UTC


README

This bundle fixed issue with timezone Europe/Moscow for date and datetime form types, when used ICU < 54.1.

See this issue for details.

Installation

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require yethee/date-form-bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Yethee\DateFormBundle\YetheeDateFormBundle(),
    );
}