composer.json 908 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "mf2/mf2",
  3. "type": "library",
  4. "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
  5. "keywords": ["microformats", "microformats 2", "parser", "semantic", "html"],
  6. "authors" : [
  7. {
  8. "name": "Barnaby Walters",
  9. "homepage": "http://waterpigs.co.uk"
  10. }
  11. ],
  12. "bin": ["bin/fetch-mf2", "bin/parse-mf2"],
  13. "require": {
  14. "php": ">=5.4.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "4.8.*",
  18. "phpdocumentor/phpdocumentor": "v2.8.4",
  19. "mf2/tests": "@dev"
  20. },
  21. "autoload": {
  22. "files": ["Mf2/Parser.php"]
  23. },
  24. "license": "CC0-1.0",
  25. "suggest": {
  26. "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
  27. "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
  28. }
  29. }