-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.11 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
{
"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": ["vendor/bin/phpunit", "vendor/bin/phpstan analyze src -l 3", "vendor/bin/phpcs"],
"test_with_docker": ["docker-compose run phpunit-7.2", "docker-compose run phpunit-8.2"],
"coverage": "vendor/bin/phpunit --coverage-html coverage/"
},
"authors": [
{
"name": "Rct567",
"email": "rct999@gmail.com"
}
],
"require": {
"php": "^7.2.0||^8.0.0",
"ext-xml": "*",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3 || ^10.0",
"phpunit/php-code-coverage": "^7.0 || ^9.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
}
}