-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 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
{
"name": "yurunsoft/crawler",
"type": "library",
"license": "MIT",
"description": "宇润爬虫框架(Yurun Crawler) 是一个低代码、高性能、分布式爬虫采集框架,这可能是最一把梭的爬虫框架。",
"require": {
"php": ">=7.1",
"ext-swoole": ">=4.4",
"yurunsoft/imi": "~1.2",
"yurunsoft/yurun-http": "^4.2",
"imiphp/imi-queue": "~1.0",
"imiphp/imi-rate-limit": "^1.0",
"phpdocumentor/reflection-docblock": "^4.3",
"symfony/dom-crawler": "^4.4",
"symfony/css-selector": "^4.4",
"chrome-php/chrome": "^0.8.1"
},
"require-dev": {
"yurunsoft/ide-helper": "~1.0",
"phpunit/phpunit": "^7|^8|^9"
},
"autoload": {
"psr-4" : {
"Yurun\\Crawler\\" : "./src/"
}
},
"autoload-dev": {
"psr-4" : {
"Yurun\\Crawler\\Test\\" : "./tests/Test/"
}
},
"prefer-stable": true,
"scripts": {
"test": "./tests/run"
},
"extra": {
"ide-helper": {
"list": [
"swoole",
"redis"
]
}
}
}