sebastian / comparator
Provides the functionality to compare PHP values for equality
Fund package maintenance!
sebastianbergmann
Installs: 664 263 896
Dependents: 153
Suggesters: 0
Security: 0
Stars: 6 984
Watchers: 9
Forks: 68
Open Issues: 19
Requires
- php: >=8.2
- ext-dom: *
- ext-mbstring: *
- sebastian/diff: ^6.0
- sebastian/exporter: ^6.0
Requires (Dev)
- phpunit/phpunit: ^11.4
- dev-main / 6.2.x-dev
- 6.2.1
- 6.2.0
- 6.1.1
- 6.1.0
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.x-dev
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.x-dev
- 4.0.8
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.x-dev
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.2
- 2.0.1
- 2.0.0
- 1.2.x-dev
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-10-31 05:30:54 UTC
README
sebastian/comparator
This component provides the functionality to compare PHP values for equality.
Installation
You can add this library as a local, per-project dependency to your project using Composer:
composer require sebastian/comparator
If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
composer require --dev sebastian/comparator
Usage
<?php use SebastianBergmann\Comparator\Factory; use SebastianBergmann\Comparator\ComparisonFailure; $date1 = new DateTime('2013-03-29 04:13:35', new DateTimeZone('America/New_York')); $date2 = new DateTime('2013-03-29 03:13:35', new DateTimeZone('America/Chicago')); $factory = new Factory; $comparator = $factory->getComparatorFor($date1, $date2); try { $comparator->assertEquals($date1, $date2); print "Dates match"; } catch (ComparisonFailure $failure) { print "Dates don't match"; }