composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "phpunit/phpunit" : "^4.8.35 || ^5.7.21 || ^6 || ^7"
  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.7-dev"
  40. }
  41. }
  42. }