Sen descrición

composer.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "optimize-autoloader": true,
  31. "sort-packages": true
  32. },
  33. "prefer-stable": true,
  34. "require": {
  35. "php": ">=7.0",
  36. "sebastian/recursion-context": "^3.0"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "^8.5",
  40. "ext-mbstring": "*"
  41. },
  42. "autoload": {
  43. "classmap": [
  44. "src/"
  45. ]
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1.x-dev"
  50. }
  51. }
  52. }