composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. },
  20. "prefer-stable": true,
  21. "config": {
  22. "platform": {
  23. "php": "7.3.0"
  24. },
  25. "optimize-autoloader": true,
  26. "sort-packages": true
  27. },
  28. "require": {
  29. "php": ">=7.3"
  30. },
  31. "require-dev": {
  32. "ext-pcntl": "*",
  33. "phpunit/phpunit": "^9.3"
  34. },
  35. "autoload": {
  36. "classmap": [
  37. "src/"
  38. ]
  39. },
  40. "autoload-dev": {
  41. "classmap": [
  42. "tests/_fixture/"
  43. ]
  44. },
  45. "suggest": {
  46. "ext-pcntl": "*"
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "3.1-dev"
  51. }
  52. }
  53. }