composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "sebastian/exporter",
  3. "description": "Provides the functionality to export PHP variables for visualization",
  4. "keywords": ["exporter","export"],
  5. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. },
  12. {
  13. "name": "Jeff Welch",
  14. "email": "whatthejeff@gmail.com"
  15. },
  16. {
  17. "name": "Volker Dusch",
  18. "email": "github@wallbash.com"
  19. },
  20. {
  21. "name": "Adam Harvey",
  22. "email": "aharvey@php.net"
  23. },
  24. {
  25. "name": "Bernhard Schussek",
  26. "email": "bschussek@gmail.com"
  27. }
  28. ],
  29. "support": {
  30. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  31. "security": "https://github.com/sebastianbergmann/exporter/security/policy"
  32. },
  33. "config": {
  34. "platform": {
  35. "php": "8.1.0"
  36. },
  37. "optimize-autoloader": true,
  38. "sort-packages": true
  39. },
  40. "prefer-stable": true,
  41. "require": {
  42. "php": ">=8.1",
  43. "ext-mbstring": "*",
  44. "sebastian/recursion-context": "^5.0"
  45. },
  46. "require-dev": {
  47. "phpunit/phpunit": "^10.0"
  48. },
  49. "autoload": {
  50. "classmap": [
  51. "src/"
  52. ]
  53. },
  54. "autoload-dev": {
  55. "classmap": [
  56. "tests/_fixture"
  57. ]
  58. },
  59. "extra": {
  60. "branch-alias": {
  61. "dev-main": "5.1-dev"
  62. }
  63. }
  64. }