diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-04 15:15:02 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-04 15:15:02 +0100 |
commit | 53de101335f5351584609aba8e30c3bc6a4940b5 (patch) | |
tree | 1a56ea00e89a24d4e23f0428468b38808a3d5171 /composer.json |
dup v7
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f4991e4 --- /dev/null +++ b/composer.json @@ -0,0 +1,46 @@ +{ + "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", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy" + }, + "prefer-stable": true, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "config": { + "platform": { + "php": "8.2.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + } +} + |