composer.json 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.3"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^9.3"
  26. },
  27. "config": {
  28. "platform": {
  29. "php": "7.3.0"
  30. },
  31. "optimize-autoloader": true,
  32. "sort-packages": true
  33. },
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "5.0-dev"
  42. }
  43. }
  44. }