-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.38 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.38 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
48
49
50
51
52
{
"name": "jeyserver/bot-blocker",
"description": "Watch and analyze Nginx access logs to block bad bots and crawlers.",
"license": "proprietary",
"homepage": "https://git.jeyserver.com/jeyserver/bot-blocker",
"require": {
"php": "^7.4|^8.0",
"dnj/local-filesystem": "^1.0",
"dnj/log": "^1.1",
"dnj/tmp-filesystem": "^1.1",
"guzzlehttp/guzzle": "^7.4",
"illuminate/container": "^5.4",
"kassner/log-parser": "^2.1",
"krowinski/php-inotify": "^2.0",
"league/mime-type-detection": "^1.9",
"mlocati/ip-lib": "^1.18",
"symfony/console": "^5.0",
"webignition/php-path-resolver": "^0.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4.1",
"friendsofphp/php-cs-fixer": "^3.1",
"symfony/var-dumper": "^5.0"
},
"scripts": {
"test:composer:validate": "@composer validate",
"test:types": "vendor/bin/phpstan analyze",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --diff --stop-on-violation --using-cache=no",
"test:codestyle:fix": "vendor/bin/php-cs-fixer fix -v --using-cache=no",
"test": [
"@test:composer:validate",
"@test:types",
"@test:codestyle"
]
},
"autoload": {
"psr-4": {
"Jeyserver\\BotBlocker\\": "src/"
}
},
"bin": [
"bin/bot-blocker"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": false,
"sort-packages": true
}
}