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
Requires
- php: >=5.3.9
- symfony/form: ~2.3
- symfony/framework-bundle: ~2.3
- symfony/intl: ~2.3
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is auto-updated.
Last update: 2024-10-14 08:22:14 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(), ); }