diff options
author | Remi Collet <remi@remirepo.net> | 2020-06-05 08:08:37 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-06-05 08:08:37 +0200 |
commit | 142f42a69886adbe2095d12450591d246d327f1f (patch) | |
tree | 3f655a26d0fe8e11c37badd16df3790f55b65521 /composer.json |
duplicate v3
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..2fb638f --- /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": "^7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "config": { + "platform": { + "php": "7.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + } +} + |