-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "dobrosite/http-crawler",
"description": "PHP component for recursive web sites traversal",
"type": "library",
"license": "MIT",
"keywords": [
"crawler",
"http",
"website"
],
"authors": [
{
"name": "Михаил Красильников",
"email": "m.krasilnikov@dobro.site"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6.40|^7.0",
"dobrosite/crawler": "^0.2",
"guzzlehttp/psr7": "^1.5",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"symfony/css-selector": "^3.4|^4.0",
"symfony/dom-crawler": "^3.4|^4.0",
"symfony/event-dispatcher": "^3.4|^4.0"
},
"require-dev": {
"php-http/curl-client": "^1.7",
"phpunit/phpunit": "^5.7|^6.0"
},
"autoload": {
"psr-4": {
"DobroSite\\Crawler\\HTTP\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DobroSite\\Crawler\\HTTP\\Tests\\": "tests"
}
}
}