composer.json 949 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "sunra/php-simple-html-dom-parser",
  3. "type": "library",
  4. "description": "Composer adaptation of: A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.",
  5. "keywords": ["html", "dom", "parser"],
  6. "homepage": "https://github.com/sunra/php-simple-html-dom-parser",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "S.C. Chen",
  11. "homepage": "http://sourceforge.net/projects/simplehtmldom/"
  12. },
  13. {
  14. "name": "Sunra",
  15. "email": "sunra@yandex.ru",
  16. "homepage": "https://github.com/sunra"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.3.2",
  21. "ext-mbstring": "*"
  22. },
  23. "autoload": {
  24. "psr-0": { "Sunra\\PhpSimple\\HtmlDomParser": "Src/" }
  25. }
  26. }