diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:40:22 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:40:22 +0100 |
| commit | 72dff926f27681d7a0ca4cf4959f3fb7f68eaa11 (patch) | |
| tree | ed2b58d0a2d1d31312bb3077ab53ae24a19b21dc /composer.json | |
dup v5
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..994a5a3 --- /dev/null +++ b/composer.json @@ -0,0 +1,43 @@ +{ + "name": "sebastian/complexity", + "description": "Library for calculating the complexity of PHP code units", + "type": "library", + "homepage": "https://github.com/sebastianbergmann/complexity", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.3", + "nikic/php-parser": "^5.0" + }, + "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": "5.0-dev" + } + } +} |
