-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
57 lines (57 loc) · 1.57 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
55
56
57
{
"name": "protonlabs/libsieve-php",
"description": "libsieve-php is a library to manage and modify sieve (RFC5228) scripts.",
"keywords": ["sieve", "filters", "mail"],
"type": "library",
"license": "GPL-3.0-or-later",
"homepage": "https://sourceforge.net/projects/libsieve-php/",
"support": {
"issues": "https://github.com/ProtonMail/libsieve-php/issues"
},
"authors": [
{
"name": "Heiko Hund",
"homepage": "https://sourceforge.net/u/heikoh/profile/"
},
{
"name": "Martin Zeman",
"email": "[email protected]",
"homepage": "https://protonmail.com"
},
{
"name": "Kay Lukas",
"email": "[email protected]",
"homepage": "https://protonmail.com"
},
{
"name": "Thomas Hareau",
"email": "[email protected]",
"homepage": "https://thomas.hareau.eu"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"Sieve\\": "lib/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.5",
"protonlabs/php-coding-standard": "^4.0",
"vimeo/psalm": "^4.22"
},
"scripts": {
"phpcs": "phpcs lib",
"unit": "phpunit --testdox --colors=always"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}