diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:50:05 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:50:05 +0100 |
| commit | db9d780a1a878120c6b5e7720f95e7ffa1033e2c (patch) | |
| tree | 7c356def76042eb530f2db7bf0c2a1a2c78c62c9 /composer.json | |
dup v6
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9ba2b85 --- /dev/null +++ b/composer.json @@ -0,0 +1,38 @@ +{ + "name": "sebastian/version", + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy" + }, + "config": { + "platform": { + "php": "8.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "prefer-stable": true, + "require": { + "php": ">=8.3" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + } +} |
