-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "secondtruth/gatekeeper",
"description": "Prevent spammers from ever reading your site",
"homepage": "https://www.secondtruth.de",
"keywords": ["security", "antispam"],
"license": "MIT",
"authors": [
{
"name": "Christian Neff",
"email": "[email protected]",
"homepage": "https://www.secondtruth.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/secondtruth/gatekeeper/issues",
"wiki": "https://github.com/secondtruth/gatekeeper/wiki"
},
"require": {
"php": ">=8.1",
"psr/http-message": "^1.0",
"symfony/http-foundation": "^5.4",
"symfony/psr-http-message-bridge": "^2.1",
"psr/log": "~1.0"
},
"require-dev": {
"nyholm/psr7": "^1.5",
"phpunit/phpunit": "^9.0",
"symplify/easy-coding-standard": "^10.2"
},
"autoload": {
"psr-4": {
"Secondtruth\\Gatekeeper\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Secondtruth\\Gatekeeper\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}