-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.2 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "wolfsoft/botguard-php",
"type": "library",
"version": "1.1.2",
"description": "PHP Integration Library for BotGuard web site protection service.",
"keywords": ["botguard","api"],
"homepage": "https://botguard.net/en/documentation/integration",
"support": {
"issues": "https://github.com/wolfsoft/botguard-php/issues",
"source": "https://github.com/wolfsoft/botguard-php"
},
"license": "MIT",
"authors": [{
"name": "Dennis Prochko",
"email": "wolfsoft@mail.ru"
}],
"require": {
"php": ">=5.6",
"ext-curl": "*"
},
"require-dev": {
"php": "^7.3",
"ext-xdebug": "*",
"symfony/process": "@stable",
"phpunit/phpunit": "@stable",
"phpdocumentor/phpdocumentor": "@stable"
},
"autoload": {
"psr-4": {
"BotGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test-full" : [
"@test",
"@test-integration"
],
"test": "vendor/bin/phpunit --testsuite Unit --stderr --verbose --coverage-clover=coverage.xml",
"test-integration": "vendor/bin/phpunit --testsuite Integration --stderr --verbose",
"docs": "vendor/phpdocumentor/phpdocumentor/bin/phpdoc -d src/ -t docs/ --visibility=\"public\" && rm -rf docs/phpdoc-cache*"
}
}