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.

56 lines
1.3 KiB

3 years ago
  1. {
  2. "name": "sebastian/exporter",
  3. "description": "Provides the functionality to export PHP variables for visualization",
  4. "keywords": ["exporter","export"],
  5. "homepage": "http://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. "config": {
  30. "platform": {
  31. "php": "7.3.0"
  32. },
  33. "optimize-autoloader": true,
  34. "sort-packages": true
  35. },
  36. "prefer-stable": true,
  37. "require": {
  38. "php": ">=7.3",
  39. "sebastian/recursion-context": "^4.0"
  40. },
  41. "require-dev": {
  42. "phpunit/phpunit": "^9.3",
  43. "ext-mbstring": "*"
  44. },
  45. "autoload": {
  46. "classmap": [
  47. "src/"
  48. ]
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "4.0-dev"
  53. }
  54. }
  55. }