-
Notifications
You must be signed in to change notification settings - Fork 233
/
composer.json
47 lines (47 loc) · 1.4 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
{
"name": "vdb/php-spider",
"type": "application",
"description": "A configurable and extensible PHP web spider",
"keywords": ["spider", "crawler", "scraper"],
"license": "MIT",
"authors": [
{
"name": "Matthijs van den Bos"
}
],
"support": {
"issues": "https://github.com/matthijsvandenbos/php-spider/issues",
"source": "https://github.com/matthijsvandenbos/php-spider"
},
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-pcntl": "*",
"guzzlehttp/guzzle": "^6.0.0||^7.0.0",
"pdepend/pdepend": "^2.16.1",
"symfony/css-selector": "^3.0.0||^4.0.0||^5.0.0||^6.0||^7.0",
"symfony/dom-crawler": "^3.0.0||^4.0.0||^5.0.0||^6.0||^7.0",
"symfony/finder": "^3.0.0||^4.0.0||^5.0.0||^6.0||^7.0",
"symfony/event-dispatcher": "^4.0.0||^5.0.0||^6.0||^7.0",
"vdb/uri": "^0.3.2",
"spatie/robots-txt": "^2.0",
"phan/phan": "^4.0||^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"squizlabs/php_codesniffer": "^3.0.0",
"phpmd/phpmd": "^2.0.0",
"sebastian/phpcpd": "^6.0.0",
"friendsofphp/php-cs-fixer": "^3.16.0"
},
"autoload": {
"psr-4": {
"VDB\\Spider\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VDB\\Spider\\Tests\\": "tests/"
}
}
}