composer.json 813 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. },
  20. "require": {
  21. "php": "^5.3.3 || ^7.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  25. },
  26. "autoload": {
  27. "classmap": [
  28. "src/"
  29. ]
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "1.0-dev"
  34. }
  35. }
  36. }