-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
45 lines (45 loc) · 930 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
{
"name": "xparse/element-finder",
"description": "Elegant data scrapping",
"keywords": [
"xpath",
"parser",
"dom"
],
"homepage": "https://github.com/xparse/ElementFinder",
"license": "MIT",
"authors": [
{
"name": "Ivan Shcherbak",
"email": "alotofall@gmail.com",
"homepage": "http://funivan.com/",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/css-selector": "^7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpunit/phpunit": "^11.2.9",
"rector/rector": "^1.1",
"symplify/easy-coding-standard": "^12.1"
},
"autoload": {
"psr-4": {
"Xparse\\ElementFinder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Xparse\\ElementFinder\\": "./tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}