-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.48 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
53
54
{
"name": "cypht-org/php-sieve-manager",
"description": "A modern (started in 2022) PHP library for the ManageSieve protocol (RFC5804) to create/edit Sieve scripts (RFC5228). Used by Cypht Webmail.",
"type": "library",
"keywords": [
"mail",
"php",
"sieve",
"managesieve",
"filters",
"imap",
"email",
"cypht",
"RFC5804",
"RFC5228"
],
"homepage": "https://github.com/cypht-org/php-sieve-manager",
"license": "MIT",
"authors": [
{
"name": "Henrique Borba",
"email": "[email protected]",
"role": "Initial developer, no longer active"
},
{
"name": "Victor Emanouilov",
"role": "Maintainer"
},
{
"name": "Josaphat Imani",
"role": "Maintainer"
},
{
"name": "Marc Laporte",
"role": "Maintainer",
"homepage": "https://MarcLaporte.com"
}
],
"support": {
"issues": "https://github.com/cypht-org/php-sieve-manager/issues",
"wiki": "https://github.com/cypht-org/php-sieve-manager/wiki",
"source": "https://github.com/cypht-org/php-sieve-manager",
"chat": "https://gitter.im/cypht-org/community"
},
"require": {
"php": ">=5.4"
},
"autoload": {
"psr-4": {
"PhpSieveManager\\": "src/"
}
},
"minimum-stability": "stable"
}