-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
37 lines (37 loc) · 1.01 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": "dsoares/rcguard",
"type": "roundcube-plugin",
"description": "Roundcube plugin that enforces reCAPTCHA for users that have too many failed logins",
"keywords": ["mail","roundcube","security","captcha"],
"homepage": "https://github.com/dsoares/roundcube-rcguard",
"version": "1.3.2",
"license": "GPL-3.0+",
"authors": [
{
"name": "Diana Soares",
"email": "[email protected]",
"homepage": "https://github.com/dsoares",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://plugins.roundcube.net"
}
],
"require": {
"php": ">=5.4",
"roundcube/plugin-installer": ">=0.1.3"
},
"scripts": {
"lint": "php-cs-fixer -v fix --diff --diff-format udiff --dry-run",
"fix": "php-cs-fixer fix"
},
"extra": {
"roundcube": {
"min-version": "1.1",
"sql-dir": "SQL"
}
}
}