summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-02-07 11:31:09 +0100
committerRemi Collet <remi@remirepo.net>2020-02-07 11:31:09 +0100
commitfe8b7daa3ca04b44ad23ee4efc4610f158d429ae (patch)
tree418db141227eaeea3a610c1211138b2096ac1a01 /composer.json
duplicate v2
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d400ad7
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "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.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0"
+ },
+ "config": {
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ }
+}
+