-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.14 KB
/
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
39
40
41
42
43
{
"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":"singer@webagentur72.de",
"homepage":"http://www.webagentur72.de"
}
],
"require":{
"php":"^8.0",
"ext-dom":"*",
"ext-libxml":"*",
"symfony/polyfill-mbstring": "~1.0",
"symfony/dom-crawler":"^6.0 || ^7.0",
"symfony/css-selector":"^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"wa72/html-pretty-min": "~0.1",
"mikey179/vfsstream": "^1.6.10",
"scrutinizer/ocular": "^1.9",
"clean/phpdoc-md": "^0.19.3"
},
"suggest": {
"wa72/html-pretty-min": "Minify or indent HTML documents"
},
"autoload":{
"psr-4":{
"Wa72\\HtmlPageDom\\":"src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}