-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.32 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
65
{
"name": "khs1994/tencent-mail",
"description": "A PHP Library for the Tencent Mail",
"keywords": [
"sdk",
"api"
],
"homepage": "https://github.com/khs1994-php/tencent-mail",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "khs1994",
"email": "khs1994@khs1994.com",
"homepage": "https://khs1994.com"
}
],
"support": {
"issues": "https://github.com/khs1994-php/tencent-mail/issues"
},
"require": {
"php": "^7.1.3",
"ext-json": "*",
"doctrine/cache": "^1.6",
"guzzlehttp/guzzle": "^6.3",
"pimple/pimple": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"vlucas/phpdotenv": "~2.5.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist"
},
"suggest": {
"ext-xdebug": "*"
},
"autoload": {
"psr-4": {
"TencentMail\\": "src/TencentMail/"
}
},
"autoload-dev": {
"psr-4": {
"TencentMail\\Tests\\": "tests/TencentMail/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "18.06-dev"
},
"laravel": {
"providers": [
"TencentMail\\Support\\ServiceProvider"
],
"aliases": {
"TencentMail": "TencentMail\\Support\\Facade"
}
}
}
}