forked from mvdbos/php-spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 977 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
{
"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",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/matthijsvandenbos/php-spider/issues",
"source": "https://github.com/matthijsvandenbos/php-spider"
},
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "^6.0.0",
"symfony/css-selector": "^3.0.0",
"symfony/dom-crawler": "^3.0.0",
"symfony/finder": "^3.0.0",
"symfony/event-dispatcher": "^3.0.0",
"vdb/uri": "^0.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7.0"
},
"autoload": {
"psr-0": {
"VDB\\Spider": "src/",
"VDB\\Spider\\Tests": "tests/"
}
}
}