composer.json 532 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "michelf/php-markdown",
  3. "type": "library",
  4. "description": "PHP Markdown",
  5. "homepage": "https://michelf.ca/projects/php-markdown/",
  6. "keywords": ["markdown"],
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Michel Fortin",
  11. "email": "michel.fortin@michelf.ca",
  12. "homepage": "https://michelf.ca/",
  13. "role": "Developer"
  14. },
  15. {
  16. "name": "John Gruber",
  17. "homepage": "https://daringfireball.net/"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.3.0"
  22. },
  23. "autoload": {
  24. "psr-4": { "Michelf\\": "Michelf/" }
  25. }
  26. }