litipk/doctrine-mongodb-jiffy
最新稳定版本:1.0.0
Composer 安装命令:
composer require litipk/doctrine-mongodb-jiffy
包简介
Type adapter for Jiffy's Universal Timestamps on Doctrine MongoDB ODM
README 文档
README
About the library
PHP does not offer any native class to implement timestamps with milliseconds or microseconds precision, the only
"native" way to do it is working with the weird microtime function and/or the \MongoDate class.
This library provides a Doctrine ODM type to make possible using the PHP-Jiffy's UniversalTimestamp objects in our
Doctrine ODM models. It's very useful if you need to deal with very precise timestamps but you don't want to couple your
code with the \MongoDate class without giving up on type hinting.
As an extra bonus, this library provides future compatibility with the mongodb extension and its
MongoDB\BSON\UTCDateTime class.
Installation
composer require litipk/doctrine-mongodb-jiffy
Usage
To use this type there are three steps:
- Install the library through Composer.
- Register the type in your application, if you are using Symfony, the Bundle constructor is a good place to do it.
Type::registerType( 'UniversalTimestamp', 'Litipk\Jiffy\Doctrine\ODM\MongoDB\UniversalTimestampType' );
- Use the type in your models with the
@UniversalTimestampFieldannotation.use Litipk\Jiffy\Doctrine\ODM\MongoDB\UniversalTimestampField; class OurDocument { /** * @UniversalTimestampField() * @var UniversalTimestamp */ private $creationDate; // [...] }
统计信息
- 总下载量: 813
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-07