diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-04 15:23:48 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-04 15:23:48 +0100 |
commit | a76cc8cc2fce6b318ccbd73668d0ed0cb7df2633 (patch) | |
tree | d0bc8ecb7498dc676536493faf06219768a663e1 /composer.json |
dup v6
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1b1d957 --- /dev/null +++ b/composer.json @@ -0,0 +1,66 @@ +{ + "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.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0", + "ext-dom": "*", + "ext-mbstring": "*" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "require-dev": { + "phpunit/phpunit": "^11.4" + }, + "config": { + "platform": { + "php": "8.2.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/_fixture" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "6.2-dev" + } + } +} + |