forked from sunra/php-simple-html-dom-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
21 lines (21 loc) · 779 Bytes
/
composer.json
File metadata and controls
21 lines (21 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "matpo/php-simple-html-dom-parser",
"type": "library",
"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.",
"keywords": ["html", "dom", "parser"],
"homepage": "https://github.com/matpo/php-simple-html-dom-parser",
"license": "MIT",
"authors": [
{
"name": "Matpo",
"homepage": "https://github.com/matpo"
}
],
"require": {
"php": ">=5.3.2",
"ext-mbstring": "*"
},
"autoload": {
"psr-0": { "Matpo\\PhpSimple\\HtmlDomParser": "Src/" }
}
}