forked from paquettg/php-html-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·83 lines (42 loc) · 1.27 KB
/
composer.json
File metadata and controls
executable file
·83 lines (42 loc) · 1.27 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "paquettg/php-html-parser",
"type": "library",
"description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
"keywords": ["html", "dom", "parser"],
"homepage": "https://github.com/paquettg/php-html-parser",
"license": "MIT",
"authors": [
{
"name": "Gilles Paquette",
"email": "paquettg@gmail.com",
"homepage": "http://gillespaquette.ca"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-curl": "*",
"paquettg/string-encode": "~1.0.0",
"php-http/httplug": "^2.3.0",
"guzzlehttp/guzzle": "^7.5.0",
"guzzlehttp/psr7": "^2.4.1",
"myclabs/php-enum": "^1.8.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5.24",
"mockery/mockery": "^1.5.0",
"infection/infection": "^0.26.14",
"phan/phan": "^5.4.1",
"friendsofphp/php-cs-fixer": "^3.10.0"
},
"autoload": {
"psr-4": {
"PHPHtmlParser\\": "src/PHPHtmlParser" }
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}