-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·59 lines (59 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "danbettles/defence",
"description": "A simple intrusion detection/prevention system framework for PHP apps",
"keywords": [
"IDS",
"IPS",
"intrusion",
"prevention",
"injection",
"malicious",
"suspicious",
"hack",
"crack",
"request",
"logging",
"validation",
"filter"
],
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Daniel Bettles",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"danbettles/gestalt": "^4.0",
"symfony/http-foundation": "^4.4.7|^5.0|^6.0",
"psr/log": "^2.0.0|^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.18",
"squizlabs/php_codesniffer": "^3.9.1",
"danbettles/codesniffer-standard": "^2.0.0",
"phpstan/phpstan": "^1.10.66"
},
"suggest": {
"ext-curl": "If you want to use `SlackLogger`."
},
"autoload": {
"psr-4": {"DanBettles\\Defence\\": "src/"}
},
"autoload-dev": {
"psr-4": {"DanBettles\\Defence\\Tests\\": "tests/"}
},
"scripts": {
"app:test": "phpunit",
"app:analyse": "phpstan analyse -c phpstan.neon",
"app:lint": "phpcs --standard=phpcs.xml",
"app:check-quality": [
"@app:test",
"@app:analyse",
"@app:lint"
]
}
}