-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (42 loc) · 1.07 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
49
{
"name": "perry-rylance/dom-document",
"version": "3.0.1",
"minimum-stability": "stable",
"description": "An extension of PHP's DOMDocument library. This library implements many common jQuery functions, adds support for HTML5, CSS selectors, method chaining and performing operations on sets of matched results.",
"type": "library",
"keywords": ["DOM", "HTML5"],
"homepage": "https://perryrylance.com",
"license": "MIT",
"authors": [
{
"name": "Perry Rylance",
"email": "[email protected]",
"homepage": "https://perryrylance.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.2.0",
"ext-dom": "*",
"masterminds/html5": "^2.7",
"symfony/css-selector": "^7.0"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "3.*",
"phpunit/phpunit": "10",
"sabberworm/php-css-parser": "^8.4"
},
"autoload": {
"psr-4": {
"PerryRylance\\": "src"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"tests": "php vendor/bin/phpunit tests --testdox --colors=always"
}
}