forked from horde/ManageSieve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 909 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
37
38
39
40
{
"name": "nextcloud/horde-managesieve",
"description": "ManageSieve client library",
"type": "library",
"homepage": "https://www.horde.org",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Jan Schneider",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": "^7.4 || ^8.0",
"bytestream/horde-exception": "^2",
"bytestream/horde-socket-client": "^2",
"bytestream/horde-util": "^2"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-0": {
"Horde\\": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"Horde\\": "test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}