No Description

composer.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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@2bepublished.at"
  27. }
  28. ],
  29. "require": {
  30. "php": ">=5.3.3",
  31. "sebastian/recursion-context": "~1.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "~4.4"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "src/"
  39. ]
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.2.x-dev"
  44. }
  45. }
  46. }