-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.02 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
{
"name": "mediamonks/crawler",
"type": "library",
"description": "Crawl your own website with various clients for SEO and indexing purposes. ",
"keywords": [
"crawler",
"seo",
"dom",
"spider",
"robot",
"prerender",
"prerender.io",
"search",
"index",
"goutte",
"domcrawler"
],
"homepage": "https://www.mediamonks.com/",
"license": "MIT",
"authors": [
{
"name": "Robert Slootjes",
"email": "[email protected]",
"homepage": "https://github.com/slootjes"
}
],
"require": {
"php": "^5.5|^7.0",
"symfony/dom-crawler": "^2.8|^3.0|^4.0",
"fabpot/goutte": "^3.0",
"league/uri": "^4.2",
"psr/log": "^1.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master@dev",
"phpunit/phpunit": "^4.8",
"mockery/mockery": "^0.9.4",
"monolog/monolog": "^1.21"
},
"autoload": {
"psr-4": {
"MediaMonks\\Crawler\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}