-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.46 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.46 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
{
"name": "sobak/scrawler",
"description": "Scrawler is an extensible, declarative web robot and scrapper",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-json": "*",
"bopoda/robots-txt-parser": "^2.3",
"guzzlehttp/guzzle": "^6.3",
"psr/log": "^1.1",
"symfony/console": "^4.2",
"symfony/css-selector": "^4.2",
"symfony/dom-crawler": "^4.2"
},
"require-dev": {
"doctrine/orm": "^2.6",
"league/csv": "^9.2",
"phpstan/phpstan": "^0.11.5",
"phpunit/phpunit": "^8.0",
"symfony/process": "^4.2",
"symfony/var-dumper": "^4.2"
},
"suggest": {
"doctrine/orm": "Required to use DatabaseResultWriter",
"league/csv": "Required to use CsvFileResultWriter"
},
"autoload": {
"psr-4": {
"Sobak\\Scrawler\\": "src/"
},
"files": [
"src/Support/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\": "dev/app/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Maciej Sobaczewski",
"homepage": "http://sobak.pl"
}
],
"bin": [
"bin/scrawler"
],
"scripts": {
"tests": [
"phpunit",
"phpstan analyse src --level 4"
]
},
"config": {
"sort-packages": true
}
}