composer.json 967 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "cebe/markdown-latex",
  3. "description": "A super fast, highly extensible markdown parser for PHP, that converts markdown files into latex",
  4. "keywords": ["markdown", "gfm", "markdown-extra", "fast", "extensible", "latex"],
  5. "homepage": "https://github.com/cebe/markdown-latex#readme",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Carsten Brandt",
  11. "email": "mail@cebe.cc",
  12. "homepage": "http://cebe.cc/",
  13. "role": "Creator"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/cebe/markdown-latex/issues",
  18. "source": "https://github.com/cebe/markdown-latex"
  19. },
  20. "minimum-stability": "dev",
  21. "require": {
  22. "php": ">=5.4.0",
  23. "cebe/markdown": "~1.0.0",
  24. "mikevanriel/text-to-latex": "~1.0.0"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "3.7.*"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "cebe\\markdown\\latex\\": ""
  32. }
  33. },
  34. "bin": [
  35. "bin/markdown-latex"
  36. ],
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.0.x-dev"
  40. }
  41. }
  42. }