forked from VIPnytt/RobotsTxtParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.5 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
{
"name": "vipnytt/robotstxtparser",
"description": "Robots.txt parsing library, with full support for every directive and specification.",
"type": "library",
"keywords": [
"robots.txt",
"parser",
"Google",
"Yandex",
"W3C",
"The Web Robots Pages",
"Robots Exclusion Protocol",
"Robot exclusion standard",
"REP",
"Robot",
"Robots",
"Spider",
"Web-Crawler",
"Sitemaps.org",
"Sean Conner",
"Martijn Koster"
],
"homepage": "https://github.com/VIPnytt/RobotsTxtParser",
"license": "MIT",
"authors": [
{
"name": "VIP nytt AS",
"email": "support@vipnytt.no",
"role": "Owner"
},
{
"name": "Jan-Petter Gundersen",
"email": "jpg@vipnytt.no",
"role": "Developer"
}
],
"support": {
"email": "support@vipnytt.no",
"issues": "https://github.com/VIPnytt/RobotsTxtParser/issues",
"wiki": "https://github.com/VIPnytt/RobotsTxtParser/tree/master/docs",
"source": "https://github.com/VIPnytt/RobotsTxtParser",
"docs": "https://github.com/VIPnytt/RobotsTxtParser/tree/master/docs"
},
"require": {
"php": "^5.6 || ^7.0",
"ext-curl": "*",
"ext-mbstring": "*",
"composer/ca-bundle": "^1.0",
"vipnytt/useragentparser": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.2 || ^6.0"
},
"autoload": {
"psr-4": {
"vipnytt\\RobotsTxtParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"vipnytt\\RobotsTxtParser\\Tests\\": "tests/"
}
}
}