From bd4c8cfe2ec9112b7e8a7319075bac1d1b3792bf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 3 Apr 2026 08:01:14 +0200 Subject: new package --- composer.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..6057248 --- /dev/null +++ b/composer.json @@ -0,0 +1,42 @@ +{ + "name": "sebastian/git-state", + "description": "Library for describing the state of a Git checkout", + "type": "library", + "homepage": "https://github.com/sebastianbergmann/git-state", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/git-state/issues", + "security": "https://github.com/sebastianbergmann/git-state/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.0" + }, + "config": { + "platform": { + "php": "8.4.1" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "1.0-dev" + } + } +} -- cgit