forked from spatie/crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.17 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
47
48
49
50
51
52
53
{
"name": "spatie/crawler",
"description": "Crawl all internal links found on a website",
"homepage": "https://github.com/spatie/crawler",
"license": "MIT",
"keywords": [
"spatie",
"crawler",
"link",
"website"
],
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be"
}
],
"require": {
"php": "^7.1",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/psr7": "^1.4",
"nicmart/tree": "^0.2.7",
"spatie/browsershot": "^3.14",
"spatie/robots-txt": "^1.0.1",
"symfony/dom-crawler": "^4.0",
"tightenco/collect": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"larapack/dd": "^1.1"
},
"autoload": {
"psr-4": {
"Spatie\\Crawler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Crawler\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}