diff options
author | Remi Collet <remi@remirepo.net> | 2024-02-05 10:06:11 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-02-05 10:06:11 +0100 |
commit | c8568d20cf9ab295f1038ec2810db3dbdb308e54 (patch) | |
tree | 54895104a4c3294104a39779a22a9d82ed2f87f3 /composer.json |
dup v6
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..6f5880b --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name": "phpunit/php-timer", + "description": "Utility class for timing", + "type": "library", + "keywords": [ + "timer" + ], + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues" + }, + "prefer-stable": true, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "config": { + "platform": { + "php": "8.1.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + } +} + |