-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
90 lines (90 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "crwlr/crawler",
"description": "Web crawling and scraping library.",
"type": "library",
"keywords": [
"crwlr",
"crawl",
"crawler",
"crawling",
"scrape",
"scraping",
"scraper",
"web",
"bot"
],
"homepage": "https://www.crwlr.software/packages/crawler",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/crawler/issues",
"source": "https://github.com/crwlrsoft/crawler",
"docs": "https://www.crwlr.software/packages/crawler"
},
"require": {
"ext-dom": "*",
"php": "^8.1",
"crwlr/robots-txt": "^1.1",
"crwlr/schema-org": "^0.2|^0.3",
"crwlr/url": "^2.1",
"psr/log": "^2.0|^3.0",
"symfony/dom-crawler": "^6.0|^7.0",
"symfony/css-selector": "^6.0|^7.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"guzzlehttp/guzzle": "^7.4",
"adbario/php-dot-notation": "^3.1",
"chrome-php/chrome": "^1.7",
"crwlr/utils": "^1.1",
"crwlr/html-2-text": "^0.1.0"
},
"require-dev": {
"pestphp/pest": "^2.3|^3.0",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"friendsofphp/php-cs-fixer": "^3.57",
"spatie/invade": "^2.0",
"symfony/process": "^6.0|^7.0"
},
"suggest": {
"ext-zlib": "Needed to uncompress compressed responses"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/otsch"
}
],
"autoload": {
"psr-4": {
"Crwlr\\Crawler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"scripts": {
"test": "pest --exclude-group integration --display-warnings --bail",
"test-integration": "pest --group integration --display-warnings --bail",
"stan": "@php -d memory_limit=4G vendor/bin/phpstan analyse",
"cs": "php-cs-fixer fix -v --dry-run",
"cs-fix": "php-cs-fixer fix -v",
"add-git-hooks": "@php bin/add-git-hooks"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}