composer.json (679B)
1 { 2 "name": "phpunit/php-timer", 3 "description": "Utility class for timing", 4 "type": "library", 5 "keywords": [ 6 "timer" 7 ], 8 "homepage": "https://github.com/sebastianbergmann/php-timer/", 9 "license": "BSD-3-Clause", 10 "authors": [ 11 { 12 "name": "Sebastian Bergmann", 13 "email": "sb@sebastian-bergmann.de", 14 "role": "lead" 15 } 16 ], 17 "support": { 18 "issues": "https://github.com/sebastianbergmann/php-timer/issues", 19 "irc": "irc://irc.freenode.net/phpunit" 20 }, 21 "require": { 22 "php": ">=5.3.3" 23 }, 24 "autoload": { 25 "classmap": [ 26 "src/" 27 ] 28 } 29 }