forked from t1gor/Robots.txt-Parser-Class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 945 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
{
"name": "ExpandOnline/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": ">=5.4.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": ">=3.7",
"codeclimate/php-test-reporter": ">=0.2"
},
"authors": [
{
"name": "Igor Timoshenkov",
"email": "[email protected]",
"role": "creator"
},
{
"name": "Jan-Petter Gundersen",
"email": "[email protected]",
"role": "contributor"
}
],
"autoload": {
"classmap": [
"source/robotstxtparser.php"
]
},
"scripts": {
"test": "phpunit"
}
}