forked from zrashwani/arachnid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 901 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": "thewinterwind/arachnid",
"type": "library",
"description": "A crawler to find all unique internal pages on a given website",
"keywords": ["crawl","spider","search","scrape"],
"homepage": "http://github.com/thewinterwind/arachnid",
"license": "MIT",
"authors": [
{
"name": "Zeid Rashwani",
"homepage": "http://zrashwani.com"
},
{
"name": "Josh Lockhart",
"homepage": "http://www.joshlockhart.com/"
}
],
"require": {
"php": ">=5.6.0",
"fabpot/goutte": "^3.1",
"monolog/monolog": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
"symfony/var-dumper": "^2.7",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"Arachnid\\": ["src/Arachnid/", "tests/src/"]
}
}
}