composer.json 804 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "imangazaliev/didom",
  3. "description": "Simple and fast HTML parser",
  4. "type": "library",
  5. "keywords": ["didom", "parser", "html", "xml"],
  6. "license": "MIT",
  7. "homepage": "https://github.com/Imangazaliev/DiDOM",
  8. "authors": [
  9. {
  10. "name": "Imangazaliev Muhammad",
  11. "email": "imangazalievm@gmail.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=7.2",
  16. "ext-dom": "*",
  17. "ext-iconv": "*"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^8.5"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "DiDom\\": "src/DiDom/"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "DiDom\\Tests\\": "tests/"
  30. }
  31. },
  32. "config": {
  33. "platform": {
  34. "php": "7.2"
  35. }
  36. }
  37. }