composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "sebastian/recursion-context",
  3. "description": "Provides functionality to recursively process PHP variables",
  4. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Sebastian Bergmann",
  9. "email": "sebastian@phpunit.de"
  10. },
  11. {
  12. "name": "Jeff Welch",
  13. "email": "whatthejeff@gmail.com"
  14. },
  15. {
  16. "name": "Adam Harvey",
  17. "email": "aharvey@php.net"
  18. }
  19. ],
  20. "support": {
  21. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  22. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy"
  23. },
  24. "prefer-stable": true,
  25. "config": {
  26. "platform": {
  27. "php": "8.2.0"
  28. },
  29. "optimize-autoloader": true,
  30. "sort-packages": true
  31. },
  32. "require": {
  33. "php": ">=8.2"
  34. },
  35. "require-dev": {
  36. "phpunit/phpunit": "^11.0"
  37. },
  38. "autoload": {
  39. "classmap": [
  40. "src/"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-main": "6.0-dev"
  46. }
  47. }
  48. }