-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (71 loc) · 1.97 KB
/
composer.json
File metadata and controls
80 lines (71 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "maatify/security-guard",
"type": "library",
"description": "Multi-driver adaptive security protection engine for brute-force detection, abuse prevention, and distributed blocking using MySQL, Redis, and MongoDB.",
"keywords": [
"security",
"brute-force",
"rate-limit",
"ip-blocking",
"ddos",
"monitoring",
"php",
"maatify"
],
"homepage": "https://www.maatify.dev",
"license": "MIT",
"authors": [
{
"name": "Mohamed Abdulalim",
"email": "mohamed@maatify.dev",
"homepage": "https://www.maatify.dev",
"role": "Lead Architect"
}
],
"require": {
"php": ">=8.4",
"maatify/common": "^1.0",
"maatify/data-adapters": "^1.0"
},
"require-dev": {
"doctrine/dbal": "^4.3",
"friendsofphp/php-cs-fixer": "^3.60",
"maatify/data-fakes": "^1.0",
"mongodb/mongodb": "^2.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0",
"predis/predis": "^2.3"
},
"autoload": {
"psr-4": {
"Maatify\\SecurityGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maatify\\SecurityGuard\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse src tests --level=max",
"test": "phpunit --configuration phpunit.no-coverage.xml.dist",
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration phpunit.xml.dist --coverage-text --coverage-html coverage",
"format": "php-cs-fixer fix"
},
"suggest": {
"ext-redis": "High-performance RedisAdapter.",
"ext-pdo": "Required for MySQLAdapter (PDO driver).",
"ext-mongodb": "Required for MongoAdapter.",
"mongodb/mongodb": "Needed if using MongoAdapter.",
"predis/predis": "Fallback when ext-redis is unavailable.",
"doctrine/dbal": "Optional advanced SQL driver for MySQLDbalAdapter."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}