forked from wasinger/htmlpagedom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 994 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name":"wa72/htmlpagedom",
"description":"jQuery-inspired DOM manipulation extension for Symfony's Crawler",
"keywords":["HTML", "DOM", "Crawler"],
"homepage":"http://github.com/wasinger/htmlpagedom",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Christoph Singer",
"email":"[email protected]",
"homepage":"http://www.webagentur72.de"
}
],
"require":{
"php":">=7.1.0",
"symfony/dom-crawler":"^3.4|^4|^5",
"symfony/css-selector":"^3.4|^4|^5"
},
"require-dev": {
"phpunit/phpunit": "^7",
"wa72/html-pretty-min": "~0.1",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"wa72/html-pretty-min": "Minify or indent HTML documents"
},
"autoload":{
"psr-4":{
"Wa72\\HtmlPageDom\\":"src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}