forked from gcdsm12/filters
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.3 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
{
"name": "jfcherng/filters",
"type": "roundcube-plugin",
"description": "Plugin that adds a new tab to the settings section to create client-side e-mail filtering.",
"keywords": ["filters","client-side","rules","spam"],
"homepage": "https://github.com/jfcherng/roundcube-plugin-filters",
"license": "GPLv3+",
"version": "0.9.0",
"authors": [
{
"name": "Roberto Zarrelli",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Artur Petrov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Jack Chernger",
"email": "[email protected]",
"role": "Fork Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://plugins.roundcube.net"
}
],
"require": {
"php": "^5.4.0 || ^7.0.0",
"roundcube/plugin-installer": ">=0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12.0"
},
"extra": {
"roundcube": {
"min-version": "1.1.12"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"fix": [
"php-cs-fixer fix --verbose"
]
}
}