This package is abandoned and no longer maintained. The author suggests using the ergebnis/clock package instead.

Provides abstractions of a clock.

Maintainers

πŸ‘ localheinz

Package info

github.com/ergebnis/clock

pkg:composer/localheinz/clock

Statistics

Installs: 12 697

Dependents: 1

Suggesters: 0

Stars: 30

Open Issues: 0

2.12.1 2025-09-01 07:41 UTC

Requires

  • php: ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0
  • psr/clock: ^1.0.0

Suggests

None

Provides

Conflicts

None

Replaces

None

MIT 3501077e993abf7522cf5fe5a59337012f01c349

clocksystem-clocktest-clock


README

πŸ‘ Integrate
πŸ‘ Merge
πŸ‘ Release
πŸ‘ Renew

πŸ‘ Code Coverage

πŸ‘ Latest Stable Version
πŸ‘ Total Downloads
πŸ‘ Monthly Downloads

This project provides a composer package with abstractions of a clock, following the suggestion by Martin Fowler, and compatible with PSR-20.

Installation

Run

composer require ergebnis/clock

Usage

SystemClock

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();

UtcClock

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();

FrozenClock

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();

Changelog

The maintainers of this project record notable changes to this project in a changelog.

Contributing

The maintainers of this project suggest following the contribution guide.

Code of Conduct

The maintainers of this project ask contributors to follow the code of conduct.

General Support Policy

The maintainers of this project provide limited support.

You can support the maintenance of this project by sponsoring @ergebnis.

PHP Version Support Policy

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.

Security Policy

This project has a security policy.

License

This project uses the MIT license.

Credits

This project is inspired by lcobucci/clock (originally licensed under MIT by LuΓ­s Cobucci).

Social

Follow @localheinz and @ergebnis on Twitter.