diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-04 15:08:04 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-04 15:08:04 +0100 |
commit | 6cd429efad37a10e57f66b46dffcf3e4a5881c84 (patch) | |
tree | 3b3c4d669dbad79ccfdcac26da33fdfcce455c01 /composer.json |
dup v4
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..55ebd47 --- /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.2", + "nikic/php-parser": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "config": { + "platform": { + "php": "8.2.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + } +} |