diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:39:26 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:39:26 +0100 |
| commit | ab3baa3178afb3006cddc5ed2413da38ae9dc838 (patch) | |
| tree | a25080270a30d7b67365ddaf881b4fd5722fea21 /composer.json | |
dup v7
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c673f9b --- /dev/null +++ b/composer.json @@ -0,0 +1,65 @@ +{ + "name": "sebastian/comparator", + "description": "Provides the functionality to compare PHP values for equality", + "keywords": ["comparator","compare","equality"], + "homepage": "https://github.com/sebastianbergmann/comparator", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.3", + "sebastian/diff": "^7.0", + "sebastian/exporter": "^7.0", + "ext-dom": "*", + "ext-mbstring": "*" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "require-dev": { + "phpunit/phpunit": "^12.2" + }, + "config": { + "platform": { + "php": "8.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/_fixture" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "7.1-dev" + } + } +} |
