-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 864 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": "arnolem/gmail-archiver",
"description": "Allows you to archive old emails from one Gmail mailbox to another Gmail mailbox",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Arnaud",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-imap": "*",
"ext-mbstring": "*",
"ext-iconv": "*",
"ddeboer/imap": "dev-fix-addmessage"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/arnolem/imap"
}
],
"autoload": {
"psr-4": {
"App\\": "src/App"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix"
},
"scripts-descriptions": {
"cs-fix": "Check and fix coding styles using PHP CS Fixer"
}
}