-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.42 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 2.42 KB
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
58
59
60
61
62
63
64
65
{
"name": "mittwald/imapsync",
"description": "Roundcube plugin that pulls mail from a remote IMAP account into the currently logged-in mailbox. PHP-native sync via rcube_imap_generic.",
"type": "roundcube-plugin",
"license": "MIT",
"keywords": [
"roundcube",
"roundcube-plugin",
"imap",
"imapsync",
"mail",
"migration"
],
"homepage": "https://github.com/mittwald/Roundcube-IMAPsync",
"support": {
"issues": "https://github.com/mittwald/Roundcube-IMAPsync/issues",
"source": "https://github.com/mittwald/Roundcube-IMAPsync"
},
"authors": [
{
"name": "Mittwald CM Service GmbH & Co. KG",
"homepage": "https://www.mittwald.de",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.1",
"roundcube/plugin-installer": "~0.3.5"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"testcontainers/testcontainers": "^1.0",
"vimeo/psalm": "^6.0"
},
"scripts": {
"test": "@test:unit",
"test:unit": "phpunit",
"test:integration": "phpunit --configuration phpunit.integration.xml.dist",
"analyse": "psalm --no-progress",
"dist:fetch": "sh -c 'if [ -d dist/roundcubemail-1.7.0 ]; then echo \"dist/roundcubemail-1.7.0 already present, skipping.\"; exit 0; fi; curl -fLsS -o dist/roundcubemail-1.7.0-complete.tar.gz https://github.com/roundcube/roundcubemail/releases/download/1.7.0/roundcubemail-1.7.0-complete.tar.gz && tar -xzf dist/roundcubemail-1.7.0-complete.tar.gz -C dist && rm dist/roundcubemail-1.7.0-complete.tar.gz && echo \"dist/roundcubemail-1.7.0 ready.\"'"
},
"scripts-descriptions": {
"test": "Alias for test:unit.",
"test:unit": "Run the in-memory unit-test suite (fast, no Docker).",
"test:integration": "Run the Dovecot integration suite (requires a running Docker daemon).",
"analyse": "Run Psalm static analysis over imapsync.php, lib/, and tests/.",
"dist:fetch": "Download and extract Roundcube 1.7.0 source into dist/ for local reference. Idempotent."
},
"autoload": {
"classmap": [
"imapsync.php",
"lib/"
]
},
"extra": {
"roundcube": {
"min-version": "1.6.0"
}
},
"config": {
"allow-plugins": {
"roundcube/plugin-installer": false
}
}
}