composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "sebastian/global-state",
  3. "description": "Snapshotting of global state",
  4. "keywords": ["global state"],
  5. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. }
  12. ],
  13. "support": {
  14. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  15. "security": "https://github.com/sebastianbergmann/global-state/security/policy"
  16. },
  17. "prefer-stable": true,
  18. "config": {
  19. "platform": {
  20. "php": "8.1.0"
  21. },
  22. "optimize-autoloader": true,
  23. "sort-packages": true
  24. },
  25. "require": {
  26. "php": ">=8.1",
  27. "sebastian/object-reflector": "^3.0",
  28. "sebastian/recursion-context": "^5.0"
  29. },
  30. "require-dev": {
  31. "ext-dom": "*",
  32. "phpunit/phpunit": "^10.0"
  33. },
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "autoload-dev": {
  40. "classmap": [
  41. "tests/_fixture/"
  42. ],
  43. "files": [
  44. "tests/_fixture/SnapshotFunctions.php"
  45. ]
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-main": "6.0-dev"
  50. }
  51. }
  52. }