forked from unyii2/yii2-imap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.28 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
58
59
60
61
62
63
64
{
"name": "kekaadrenalin/yii2-imap",
"description": "yii2 extension to read and process mails from IMAP and PHP",
"keywords": [
"yii2",
"extension",
"widget",
"imap",
"cron",
"mail",
"inbox"
],
"homepage": "https://github.com/kekaadrenalin/yii2-imap.git",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/kekaadrenalin/yii2-imap/issues"
},
"authors": [
{
"name": "kekaadrenalin",
"homepage": "https://github.com/kekaadrenalin"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.0.0",
"ext-imap": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"autoload": {
"psr-4": {
"kekaadrenalin\\imap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"kekaadrenalinunit\\imap\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"cweagans/composer-patches": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
}
}