-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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": "hotrush/stealer",
"description": "Async website scrapper tool like scrapy built with reactphp.",
"license": "MIT",
"authors": [
{
"name": "hotrush",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"react/http": "^0.8",
"react/event-loop": "^0.5",
"react/socket": "^0.8",
"react/dns": "^0.4",
"react/stream": "^0.7",
"react/promise": "~2.5",
"symfony/dom-crawler": "^3.2",
"symfony/css-selector": "^3.2",
"josegonzalez/dotenv": "^2.1",
"monolog/monolog": "^1.22",
"nikic/fast-route": "^1.3",
"guzzlehttp/guzzle": "^6.0",
"wyrihaximus/react-guzzle-psr7": "^2.0",
"campo/random-user-agent": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Hotrush\\Stealer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hotrush\\Stealer\\Tests\\": "tests/"
}
},
"suggest": {
"react/mysql": "Async client for mysql adapter",
"pda/pheanstalk": "Beanstalkd client for adapter",
"hotrush/stealer-scrapoxy-client": "Async scrapoxy client"
}
}