-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
58 lines (58 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
{
"name": "gravitypdf/querypath",
"type": "library",
"description": "PHP library for HTML(5)/XML querying (CSS 4 or XPath) and processing (like jQuery) with PHP8.3 support",
"homepage": "https://github.com/gravitypdf/querypath",
"license": "MIT",
"keywords": [
"xml",
"html",
"css",
"jquery",
"php"
],
"support": {
"issues": "https://github.com/gravitypdf/querypath/issues",
"source": "https://github.com/gravitypdf/querypath",
"forum": "https://github.com/gravitypdf/querypath/discussions"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=VRUVBVM6BZPKN"
}
],
"require": {
"php": "^7.1 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"masterminds/html5": "^2.0"
},
"autoload": {
"psr-4": {
"QueryPath\\": "src/",
"QueryPathTests\\": "tests/QueryPath/"
},
"files": [
"src/qp_functions.php"
]
},
"require-dev": {
"mockery/mockery": "^1.1",
"yoast/phpunit-polyfills": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/php-compatibility": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"lint:min-php": "@lint --standard=phpcompat.xml"
},
"replace": {
"arthurkushman/query-path": "3.1.4",
"querypath/querypath": "3.0.5"
}
}