nathanfeitoza / clock-php5.6
A PHP 5.6 compatible clock abstraction
1.0.1
2019-09-12 19:59 UTC
Requires (Dev)
- phpunit/phpunit: ^6.5.14
This package is auto-updated.
Last update: 2024-10-13 07:43:31 UTC
README
A PHP 7.0 compatible clock abstraction.
Installation
composer require nathanfeitoza/clock-php5.6
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($systemClock->now()); $frozenClock->setTo(new DateTimeImmutable('2019-08-19 19:19:19')); var_dump($systemClock->now());
Credits
This project is a fork of kreait/clock-php, and below is the description credits of the original author:
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.