composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-ctype": "*",
  24. "ext-dom": "*",
  25. "ext-libxml" : "*",
  26. "php" : ">=5.3.0"
  27. },
  28. "require-dev": {
  29. "satooshi/php-coveralls": "1.0.*",
  30. "phpunit/phpunit" : "^4.8.35",
  31. "sami/sami": "~2.0"
  32. },
  33. "autoload": {
  34. "psr-4": {"Masterminds\\": "src"}
  35. },
  36. "autoload-dev": {
  37. "psr-4": {"Masterminds\\HTML5\\Tests\\": "test/HTML5"}
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.7-dev"
  42. }
  43. }
  44. }