composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "masterminds/html5",
  3. "description": "An HTML5 parser and serializer.",
  4. "type": "library",
  5. "homepage": "http://masterminds.github.io/html5-php",
  6. "license": "MIT",
  7. "keywords": ["xml", "html", "html5", "dom", "parser", "serializer", "querypath"],
  8. "authors": [
  9. {
  10. "name": "Matt Butcher",
  11. "email": "technosophos@gmail.com"
  12. },
  13. {
  14. "name": "Matt Farina",
  15. "email": "matt@mattfarina.com"
  16. },
  17. {
  18. "name": "Asmir Mustafic",
  19. "email": "goetas@gmail.com"
  20. }
  21. ],
  22. "require" : {
  23. "ext-libxml" : "*",
  24. "php" : ">=5.3.0"
  25. },
  26. "require-dev": {
  27. "satooshi/php-coveralls": "1.0.*",
  28. "phpunit/phpunit" : "4.*",
  29. "sami/sami": "~2.0"
  30. },
  31. "autoload": {
  32. "psr-4": {"Masterminds\\": "src"}
  33. },
  34. "autoload-dev": {
  35. "psr-4": {"Masterminds\\HTML5\\Tests\\": "test/HTML5"}
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.2-dev"
  40. }
  41. }
  42. }