This project provides a composer
package with abstractions of a clock, following the suggestion by Martin Fowler, and compatible with PSR-20.
Run
composer require ergebnis/clock
Create a new SystemClock
and use it to determine the current time in a specific time zone:
<?php
declare(strict_types=1);
use Ergebnis\Clock;
$clock = new Clock\SystemClock(new \DateTimeZone('Europe/Berlin'));
$now = $clock->now();
Freeze a SystemClock
to turn it into a FrozenClock
:
<?php
declare(strict_types=1);
use Ergebnis\Clock;
$clock = new Clock\SystemClock(new \DateTimeZone('Europe/Berlin'));
$frozenClock = $clock->freeze();
$now = $clock->now();
sleep(5);
$stillNow = $clock->now();
Create a new UtcClock
and use it to determine the current time in the UTC time zone:
<?php
declare(strict_types=1);
use Ergebnis\Clock;
$clock = new Clock\UtcClock();
$now = $clock->now();
Freeze a UtcClock
to turn it into a FrozenClock
:
<?php
declare(strict_types=1);
use Ergebnis\Clock;
$clock = new Clock\UtcClock();
$frozenClock = $clock->freeze();
$now = $clock->now();
sleep(5);
$stillNow = $clock->now();
Create a new frozen clock and use it in tests:
<?php
declare(strict_types=1);
use Ergebnis\Clock;
$now = new \DateTimeImmutable();
$clock = new Clock\FrozenClock($now);
sleep(5);
$stillNow = $clock->now();
The maintainers of this project record notable changes to this project in a changelog.
The maintainers of this project suggest following the contribution guide.
The maintainers of this project ask contributors to follow the code of conduct.
The maintainers of this project provide limited support.
You can support the maintenance of this project by sponsoring @localheinz or requesting an invoice for services related to this project.
This project supports PHP versions with active and security support.
The maintainers of this project add support for a PHP version following its initial release and drop support for a PHP version when it has reached the end of security support.
This project has a security policy.
This project uses the MIT license.
This project is inspired by lcobucci/clock
(originally licensed under MIT by Luís Cobucci).
Follow @localheinz and @ergebnis on Twitter.