-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 881 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
{
"name": "robertbyrnes/phpcrawler",
"type": "cli-application",
"version": "1.1",
"description": "A PHP CLI links crawler using FIFO Queue data structure and Producer/Consumer model.",
"keywords": ["PHP", "Crawler", "CLI", "Web Links"],
"license": "GPL-3.0",
"homepage": "https://github.com/RobertByrnes/PHP-Crawler",
"authors": [
{
"name": "Robert Byrnes",
"email": "robert@globalrbdev.uk",
"role": "PHP Developer"
}
],
"require": {
"php": ">=7.4",
"amphp/amp": "^2.5",
"amphp/parallel": "^1.4"
},
"config": {
"bin-dir": "C:/wamp64/www/PHPUnit/vendor/bin/"
},
"autoload": {
"psr-4": {
"": "classes/",
"Crawler\\": "classes/"
},
"files": [
"custom-functions.php"
]
}
}