-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (40 loc) · 1011 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
{
"name": "itgalaxy/webcrawler-verifier",
"description": "PHP library providing functionality to verify that user-agents are who they claim to be.",
"keywords": ["webcrawler", "verifier", "bots", "crawler", "validation"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Itgalaxy",
"email": "info@itgalaxy.company"
}
],
"require": {
"php": "^5.6 || ^7.0",
"s1lentium/iptools": "~1.1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.6.0",
"phpunit/php-code-coverage": "~4.0.0",
"satooshi/php-coveralls": "~1.0.0"
},
"scripts": {
"phpunit": "phpunit",
"test": "@phpunit"
},
"autoload": {
"psr-4": {
"WebcrawlerVerifier\\": "src/"
}
},
"archive": {
"exclude": [
"!vendor",
"tests",
"*phpunit.xml*",
".travis.yml",
"composer.phar"
]
}
}