-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "3dgoo/silverstripe-hcaptcha",
"description": "A spam protector and form field using hCaptcha",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "hcaptcha", "spamprotection"],
"license": "MIT",
"authors": [
{
"name": "3dgoo",
"email": "[email protected]",
"homepage": "https://www.3dgoo.com"
}
],
"require": {
"guzzlehttp/guzzle": ">=7",
"silverstripe/framework": "^4.0 | ^5",
"silverstripe/spamprotection": "^3.0 | ^4"
},
"require-dev": {
"phpunit/phpunit": "^5.7 | ^9",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"X3dgoo\\silverstripe-hcaptcha\\": "src/"
}
},
"support": {
"issues": "https://github.com/3dgoo/silverstripe-hcaptcha/issues"
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}