composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "phpunit/php-invoker",
  3. "description": "Invoke callables with a timeout",
  4. "type": "library",
  5. "keywords": [
  6. "process"
  7. ],
  8. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  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-invoker/issues",
  19. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy"
  20. },
  21. "prefer-stable": true,
  22. "config": {
  23. "platform": {
  24. "php": "8.2.0"
  25. },
  26. "optimize-autoloader": true,
  27. "sort-packages": true
  28. },
  29. "require": {
  30. "php": ">=8.2"
  31. },
  32. "require-dev": {
  33. "ext-pcntl": "*",
  34. "phpunit/phpunit": "^11.0"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "src/"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "classmap": [
  43. "tests/_fixture/"
  44. ]
  45. },
  46. "suggest": {
  47. "ext-pcntl": "*"
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-main": "5.0-dev"
  52. }
  53. }
  54. }