You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.1 KiB

3 years ago
  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. "platform": {
  16. "php": "7.3.0"
  17. },
  18. "optimize-autoloader": true,
  19. "sort-packages": true
  20. },
  21. "require": {
  22. "php": ">=7.3",
  23. "sebastian/object-reflector": "^2.0",
  24. "sebastian/recursion-context": "^4.0"
  25. },
  26. "require-dev": {
  27. "ext-dom": "*",
  28. "phpunit/phpunit": "^9.3"
  29. },
  30. "suggest": {
  31. "ext-uopz": "*"
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "classmap": [
  40. "tests/_fixture/"
  41. ],
  42. "files": [
  43. "tests/_fixture/SnapshotFunctions.php"
  44. ]
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "5.0-dev"
  49. }
  50. }
  51. }