forked from Rct567/DomQuery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1007 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "edwinhuish/domquery",
"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": {
"DQ\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DQ\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit && phpstan analyze src -l 5 && phpcs",
"coverage": "phpunit --coverage-html coverage/"
},
"authors": [
{
"name": "Edwin Xu",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0.0",
"ext-xml": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-libxml": "*",
"tightenco/collect": "^5",
"edwinhuish/css-to-xpath": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phpunit/php-code-coverage": "^5.3",
"phpstan/phpstan": "^0.8",
"squizlabs/php_codesniffer": "^3.1"
}
}