diff options
author | Remi Collet <remi@remirepo.net> | 2024-02-05 10:10:22 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-02-05 10:10:22 +0100 |
commit | 94ade6256c4809dd1881b933fa84c9293e080474 (patch) | |
tree | 7f9e7a73c476c010c14a25e7f9eb48481a25622f /composer.json |
dup v2
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f33a196 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "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" + }, + "prefer-stable": true, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "config": { + "platform": { + "php": "8.1.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + } +} |