kreait / clock
A PHP 7.0 compatible clock abstraction
Fund package maintenance!
jeromegamez
Tidelift
Installs: 13 487 485
Dependents: 4
Suggesters: 0
Security: 0
Stars: 95
Watchers: 6
Forks: 3
Open Issues: 0
Requires
- php: ^7.0|^8.0
- stella-maris/clock: ^0.1.4
Requires (Dev)
- phpunit/phpunit: ^6.5.14
README
A PHP 7.0 compatible clock abstraction.
Installation
composer require kreait/clock
Basic usage
<?php require 'vendor/autoload.php'; use Kreait\Clock\FrozenClock; use Kreait\Clock\SystemClock; $systemClock = new SystemClock(new DateTimeZone('UTC')); var_dump($systemClock->now()); $frozenClock = new FrozenClock(new DateTimeImmutable('2019-08-20 10:41:53')); var_dump($frozenClock->now()); $frozenClock->setTo(new DateTimeImmutable('2019-08-19 19:19:19')); var_dump($frozenClock->now());
Credits
This project exists because lcobucci/clock (rightfully) doesn't support PHP 7.0 anymore, but we need a clock in kreait/firebase-php 4.x and kreait/firebase-tokens 1.x for backwards compatibility.
License
The MIT License (MIT). Please see License File for more information.