-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 982 Bytes
/
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
{
"name": "dsoares/blacklist",
"type": "roundcube-plugin",
"description": "Roundcube plugin to provide a generic access blacklist.",
"keywords": ["mail","roundcube","security"],
"homepage": "https://github.com/dsoares/roundcube-blacklist",
"version": "0.2.0",
"license": "GPL-3.0+",
"authors": [
{
"name": "Diana Soares",
"email": "[email protected]",
"homepage": "https://github.com/dsoares"
}
],
"repositories": [
{
"type": "composer",
"url": "https://plugins.roundcube.net"
}
],
"require": {
"php": ">=5.4",
"roundcube/plugin-installer": ">=0.1.2",
"dsoares/geolocation": ">=0.1"
},
"scripts": {
"lint": "php-cs-fixer -v fix --diff --diff-format udiff --dry-run",
"fix": "php-cs-fixer fix"
},
"extra": {
"roundcube": {
"min-version": "1.0"
}
}
}