-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "lastcall/last-call-crawler",
"description": "Static site crawler/processor",
"license": "MIT",
"authors": [
{
"name": "Rob Bayliss",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LastCall\\Crawler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LastCall\\Crawler\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"doctrine/dbal": "^2.5",
"symfony/stopwatch": "~2.8|~3.0",
"symfony/css-selector": "~2.8|~3.0",
"friendsofphp/php-cs-fixer": "^1.11"
},
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "^6.1",
"symfony/console": "~2.8|~3.0",
"symfony/event-dispatcher": "~2.8|~3.0",
"symfony/dom-crawler": "~2.8|~3.0",
"symfony/filesystem": "~2.8|~3.0",
"psr/log": "^1.0",
"pimple/pimple": "^3.0"
},
"suggests": {
"doctrine/dbal": "Allow database backed queues",
"symfony/stopwatch": "Track performance metrics",
"symfony/monolog-bridge": "Stream logs to the console",
"symfony/css-selector": "Use CSS selectors to traverse the dom"
},
"bin": [ "bin/crawler" ]
}