diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:41:46 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:41:46 +0100 |
| commit | 638b8245995bf6731c0be79c3fd194d276b815eb (patch) | |
| tree | 7b6c9633d9dd4a9d55a03f92e2b1ae2065f232bb /composer.json | |
dup v7
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..124d8ed --- /dev/null +++ b/composer.json @@ -0,0 +1,51 @@ +{ + "name": "sebastian/diff", + "description": "Diff implementation", + "keywords": ["diff", "udiff", "unidiff", "unified diff"], + "homepage": "https://github.com/sebastianbergmann/diff", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy" + }, + "prefer-stable": true, + "config": { + "platform": { + "php": "8.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0", + "symfony/process": "^7.2" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + } +} |
