composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "paquettg/php-html-parser",
  3. "type": "library",
  4. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  5. "keywords": ["html", "dom", "parser"],
  6. "homepage": "https://github.com/paquettg/php-html-parser",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Gilles Paquette",
  11. "email": "paquettg@gmail.com",
  12. "homepage": "http://gillespaquette.ca"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.2",
  17. "ext-mbstring": "*",
  18. "ext-zlib": "*",
  19. "ext-curl": "*",
  20. "paquettg/string-encode": "~1.0.0",
  21. "php-http/httplug": "^2.1",
  22. "guzzlehttp/guzzle": "^7.0",
  23. "guzzlehttp/psr7": "^1.6",
  24. "myclabs/php-enum": "^1.7"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^7.5.1",
  28. "mockery/mockery": "^1.2",
  29. "infection/infection": "^0.13.4",
  30. "phan/phan": "^2.4",
  31. "friendsofphp/php-cs-fixer": "^2.16"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "PHPHtmlParser\\": "src/PHPHtmlParser"
  36. }
  37. }
  38. }