forked from Rct567/DomQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 978 Bytes
/
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
{
"name": "rct567/dom-query",
"description": "DomQuery is a PHP library that allows easy 'jQuery like' DOM traversing and manipulation",
"keywords": ["jquery", "dom", "html", "xml", "css", "selector"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {"Rct567\\": "src/Rct567"}
},
"autoload-dev": {
"psr-4": {"Rct567\\": "tests/Rct567"}
},
"scripts": {
"test": "phpunit && phpstan analyze src -l 5 && phpcs",
"coverage": "phpunit --coverage-html coverage/"
},
"authors": [
{
"name": "Rct567",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0.0|^8.0.0",
"ext-xml": "*",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5|^9.3.3",
"phpunit/php-code-coverage": "^5.3|^9.0",
"phpstan/phpstan": "^0.12",
"squizlabs/php_codesniffer": "^3.1"
}
}