From 27e514d20bd9feaae03a9fff842f049828c8ab5c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 5 Feb 2024 11:43:38 +0100 Subject: dup v2 --- composer.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1f3b747 --- /dev/null +++ b/composer.json @@ -0,0 +1,43 @@ +{ + "name": "sebastian/lines-of-code", + "description": "Library for counting the lines of code in PHP source code", + "type": "library", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.1", + "nikic/php-parser": "^4.18 || ^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "config": { + "platform": { + "php": "8.1" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + } +} -- cgit