composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "sebastian/global-state",
  3. "description": "Snapshotting of global state",
  4. "keywords": ["global state"],
  5. "homepage": "http://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. "prefer-stable": true,
  14. "config": {
  15. "optimize-autoloader": true,
  16. "sort-packages": true
  17. },
  18. "require": {
  19. "php": "^7.2",
  20. "sebastian/object-reflector": "^1.1.1",
  21. "sebastian/recursion-context": "^3.0"
  22. },
  23. "require-dev": {
  24. "ext-dom": "*",
  25. "phpunit/phpunit": "^8.0"
  26. },
  27. "suggest": {
  28. "ext-uopz": "*"
  29. },
  30. "autoload": {
  31. "classmap": [
  32. "src/"
  33. ]
  34. },
  35. "autoload-dev": {
  36. "classmap": [
  37. "tests/_fixture/"
  38. ],
  39. "files": [
  40. "tests/_fixture/SnapshotFunctions.php"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "3.0-dev"
  46. }
  47. }
  48. }