-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 662 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 662 Bytes
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
{
"name": "ivopetkov/html5-dom-document-php",
"description": "HTML5 DOMDocument PHP library (extends DOMDocument)",
"license": "MIT",
"authors": [
{
"name": "Ivo Petkov",
"email": "ivo@ivopetkov.com",
"homepage": "http://ivopetkov.com"
}
],
"require": {
"php": "8.0.*|8.1.*|8.2.*|8.3.*|8.4.*|8.5.*",
"ext-dom": "*"
},
"require-dev": {
"ivopetkov/docs-generator": "1.*",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"files": [
"autoload.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}