-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
48 lines (48 loc) · 986 Bytes
/
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
{
"name": "t1gor/robots-txt-parser",
"description": "PHP class to parse robots.txt rules according to Google, Yandex, W3C and The Web Robots Pages specifications.",
"keywords": [
"robots.txt",
"parser",
"Google",
"Yandex",
"W3C",
"The Web Robots Pages"
],
"homepage": "https://github.com/t1gor/Robots.txt-Parser-Class",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"ext-iconv": "*",
"vipnytt/useragentparser": "^1.0",
"psr/log": "^1.1"
},
"require-dev": {
"ext-json": "*",
"codeclimate/php-test-reporter": ">=0.2",
"phpunit/phpunit": "^9",
"monolog/monolog": "^2.3"
},
"authors": [
{
"name": "Igor Timoshenkov",
"email": "igor.timoshenkov@gmail.com",
"role": "creator"
},
{
"name": "Jan-Petter Gundersen",
"email": "jpg@vipnytt.no",
"role": "contributor"
}
],
"autoload": {
"psr-4": {
"t1gor\\RobotsTxtParser\\": "source"
}
},
"scripts": {
"test": "phpunit"
}
}