composer.json 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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": "sebastian@phpunit.de",
  14. "role": "lead"
  15. }
  16. ],
  17. "support": {
  18. "issues": "https://github.com/sebastianbergmann/php-timer/issues"
  19. },
  20. "prefer-stable": true,
  21. "require": {
  22. "php": "^7.1"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^7.0"
  26. },
  27. "config": {
  28. "optimize-autoloader": true,
  29. "sort-packages": true
  30. },
  31. "autoload": {
  32. "classmap": [
  33. "src/"
  34. ]
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.1-dev"
  39. }
  40. }
  41. }