composer.json 943 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "paquettg/php-html-parser",
  3. "type": "library",
  4. "version": "2.0.2",
  5. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  6. "keywords": ["html", "dom", "parser"],
  7. "homepage": "https://github.com/paquettg/php-html-parser",
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Gilles Paquette",
  12. "email": "paquettg@gmail.com",
  13. "homepage": "http://gillespaquette.ca"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.1",
  18. "ext-mbstring": "*",
  19. "paquettg/string-encode": "~1.0.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^7.5.1",
  23. "mockery/mockery": "^1.2",
  24. "php-coveralls/php-coveralls": "^2.1"
  25. },
  26. "autoload": {
  27. "psr-0": {
  28. "PHPHtmlParser": "src/"
  29. }
  30. },
  31. "minimum-stability": "dev",
  32. "prefer-stable": true
  33. }