summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-02-05 11:43:38 +0100
committerRemi Collet <remi@php.net>2024-02-05 11:43:38 +0100
commit27e514d20bd9feaae03a9fff842f049828c8ab5c (patch)
tree34dc960482306b2d766ce5e60c330d9ef1262aa8 /composer.json
dup v2
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json43
1 files changed, 43 insertions, 0 deletions
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"
+ }
+ }
+}