-
-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.71 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "spatie/crawler",
"description": "Crawl all internal links found on a website",
"keywords": [
"spatie",
"crawler",
"link",
"website"
],
"homepage": "https://github.com/spatie/crawler",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be"
}
],
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^7.8.2 || ^8.0",
"guzzlehttp/psr7": "^2.6.3 || ^3.0",
"psr/http-client": "^1.0",
"spatie/robots-txt": "^2.0",
"symfony/css-selector": "^7.0|^8.0",
"symfony/dom-crawler": "^7.0|^8.0"
},
"require-dev": {
"pestphp/pest": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"spatie/invade": "^2.1",
"spatie/ray": "^1.37"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest"
},
"suggest": {
"spatie/browsershot": "Required for JavaScript rendering with BrowsershotRenderer (^5.0.5)"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Spatie\\Crawler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Crawler\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-v9": "9.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}