composer.json 743 B

123456789101112131415161718192021222324252627282930313233
  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. "require-dev": {
  25. "phpunit/phpunit": "~4|~5"
  26. },
  27. "autoload": {
  28. "classmap": [
  29. "src/"
  30. ]
  31. }
  32. }