-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
38 lines (38 loc) · 1.1 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
{
"name": "blogdaren/phpcreeper",
"type": "library",
"keywords": ["spider", "crawler", "multi-process", "event-loop", "async", "headless"],
"homepage": "http://www.phpcreeper.com",
"description": "A new generation of multi-process async event-driven spider engine based on Workerman",
"license": "MIT",
"authors": [
{
"name": "blogdaren",
"email": "[email protected]"
}
],
"support": {
"wiki": "http://www.phpcreeper.com/docs/",
"source": "https://github.com/blogdaren/PHPCreeper"
},
"require": {
"php": ">=7.0.0",
"workerman/workerman": ">=3.5.0,<5.0.0",
"blogdaren/configurator": "^1.0",
"blogdaren/logger": "^1.1.2",
"guzzlehttp/guzzle": "^6.4 || ^7.0",
"predis/predis": "2.0.*",
"chrome-php/chrome": "^1.11"
},
"suggest": {
"ext-event": "For better performance"
},
"autoload": {
"psr-4": {
"PHPCreeper\\" : "src/"
},
"files": [
"src/Kernel/Library/Common/Functions.php"
]
}
}