composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "voku/simple_html_dom",
  3. "description": "Simple HTML DOM package.",
  4. "keywords": [
  5. "dom",
  6. "php dom",
  7. "HTML parser"
  8. ],
  9. "homepage": "https://github.com/voku/simple_html_dom",
  10. "license": "MIT",
  11. "type": "library",
  12. "authors": [
  13. {
  14. "name": "dimabdc",
  15. "email": "support@titor.ru",
  16. "homepage": "https://github.com/dimabdc",
  17. "role": "Developer"
  18. },
  19. {
  20. "name": "Lars Moelleken",
  21. "homepage": "https://www.moelleken.org/",
  22. "role": "Fork-Maintainer"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=7.0.0",
  27. "ext-dom": "*",
  28. "ext-libxml": "*",
  29. "ext-simplexml": "*",
  30. "symfony/css-selector": "~3.0 || ~4.0 || ~5.0 || ~6.0"
  31. },
  32. "suggest": {
  33. "voku/portable-utf8": "If you need e.g. UTF-8 fixed output."
  34. },
  35. "require-dev": {
  36. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "voku\\helper\\": "src/voku/helper/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Tests\\": "tests"
  46. }
  47. }
  48. }