diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:38:08 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:38:08 +0100 |
| commit | 9c5b32773884e88d6028a092b581bb5aa02c9ea5 (patch) | |
| tree | 38e106fc605a898c3d15d2def350f581ca31fac0 /composer.json | |
dup v4
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d8be843 --- /dev/null +++ b/composer.json @@ -0,0 +1,42 @@ +{ + "name": "sebastian/cli-parser", + "description": "Library for parsing CLI options", + "type": "library", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "config": { + "platform": { + "php": "8.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "4.2-dev" + } + } +} |
