composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-dom": "*",
  24. "php" : ">=5.3.0"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit" : "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  28. },
  29. "autoload": {
  30. "psr-4": {"Masterminds\\": "src"}
  31. },
  32. "autoload-dev": {
  33. "psr-4": {"Masterminds\\HTML5\\Tests\\": "test/HTML5"}
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.7-dev"
  38. }
  39. }
  40. }