Boilerplate to use a Directus Instance to Build a Custom Website, Content will be Manage by Directus
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.

33 lines
787 B

5 years ago
  1. {
  2. "name": "erusev/parsedown",
  3. "description": "Parser for Markdown.",
  4. "keywords": ["markdown", "parser"],
  5. "homepage": "http://parsedown.org",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Emanuil Rusev",
  11. "email": "hello@erusev.com",
  12. "homepage": "http://erusev.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0",
  17. "ext-mbstring": "*"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^4.8.35"
  21. },
  22. "autoload": {
  23. "psr-0": {"Parsedown": ""}
  24. },
  25. "autoload-dev": {
  26. "psr-0": {
  27. "TestParsedown": "test/",
  28. "ParsedownTest": "test/",
  29. "CommonMarkTest": "test/",
  30. "CommonMarkTestWeak": "test/"
  31. }
  32. }
  33. }