forked from paquettg/php-html-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.35 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
44
45
46
47
48
{
"name": "translate5/php-html-parser",
"type": "library",
"description": "A Fork of the paquettg/php-html-parser PHP HTML-parser to be able to support newer PHP versions",
"keywords": ["php", "html", "dom", "parser", "tranlate5"],
"license": "MIT",
"authors": [
{
"name": "Axel Becher",
"email": "[email protected]"
}
],
"repositories" : [
{
"_README" : "A Fork of the paquettg/string-encoder string encoder to be able to support newer PHP versions",
"type" : "git",
"url" : "https://github.com/translate5/string-encoder/"
}
],
"require": {
"php": ">=8.1.0",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-curl": "*",
"ext-iconv": "*",
"php-http/httplug": "^2.1",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.7",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"mockery/mockery": "^1.6.7",
"infection/infection": "^0.27.0",
"phan/phan": "^5.4.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"PHPHtmlParser\\": "src/PHPHtmlParser"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
}
}