-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
43 lines (43 loc) · 1.32 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
{
"name": "nickmoline/robots-checker",
"type": "library",
"description": "Class to check a URL for robots exclusion using all possible methods of robots exclusion",
"keywords": ["robots.txt", "meta robots", "x-robots-tag"],
"homepage": "https://github.com/nickmoline/robots-checker",
"license": "MIT",
"authors": [{
"name": "Nick Moline",
"homepage": "https://nickmoline.com",
"role": "Developer"
}],
"require": {
"php": ">=5.5.9",
"ext-mbstring": "*",
"ext-intl": "*",
"ext-fileinfo": "*",
"tomverran/robots-txt-checker": "^1.14",
"php-curl-class/php-curl-class": "3.5.*",
"league/uri": "^4.0 || ^5.0",
"thesoftwarefanatics/php-html-parser": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"friendsofphp/php-cs-fixer": "^1.13 || ^2.0",
"phpspec/phpspec": "~2.0"
},
"autoload": {
"psr-4": {
"NickMoline\\Robots\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NickMoline\\Robots\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit; vendor/bin/php-cs-fixer fix -v --diff --dry-run",
"test-only": "vendor/bin/phpunit",
"fix": "vendor/bin/php-cs-fixer fix -v --diff"
}
}