HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/inventory.breadsecret.com/vendor/kreait/clock/README.md
# Clock

A PHP 7.0 compatible clock abstraction.

[![Current version](https://img.shields.io/packagist/v/kreait/clock.svg)](https://packagist.org/packages/kreait/clock)
[![Supported PHP version](https://img.shields.io/packagist/php-v/kreait/clock.svg)]()
[![Monthly Downloads](https://img.shields.io/packagist/dm/kreait/clock.svg)](https://packagist.org/packages/kreait/clock/stats)
[![Total Downloads](https://img.shields.io/packagist/dt/kreait/clock.svg)](https://packagist.org/packages/kreait/clock/stats)
[![Tests](https://github.com/kreait/clock-php/actions/workflows/tests.yml/badge.svg)](https://github.com/kreait/clock-php/actions/workflows/tests.yml)
[![Discord](https://img.shields.io/discord/807679292573220925.svg?color=7289da&logo=discord)](https://discord.gg/Yacm7unBsr)

## Installation

```bash
composer require kreait/clock
```

## Basic usage

```php
<?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](https://github.com/lcobucci/clock) (rightfully)
doesn't support PHP 7.0 anymore, but we need a clock in [kreait/firebase-php 4.x](https://github.com/kreait/firebase-php)
and [kreait/firebase-tokens 1.x](https://github.com/kreait/firebase-tokens-php) for backwards compatibility.

## License

The MIT License (MIT). Please see [License File](LICENSE) for more information.