composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "security": "https://github.com/sebastianbergmann/php-timer/security/policy"
  20. },
  21. "prefer-stable": true,
  22. "require": {
  23. "php": ">=8.2"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^11.0"
  27. },
  28. "config": {
  29. "platform": {
  30. "php": "8.2.0"
  31. },
  32. "optimize-autoloader": true,
  33. "sort-packages": true
  34. },
  35. "autoload": {
  36. "classmap": [
  37. "src/"
  38. ]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-main": "7.0-dev"
  43. }
  44. }
  45. }