-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.84 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.84 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
66
67
68
69
70
{
"name": "meditate/smartdove",
"description": "SMARTDOVE SMTP & SMS SDK for PHP/Laravel",
"keywords": [
"sms",
"mail",
"smtp",
"laravel",
"notification",
"smartdove",
"taiwan",
"laravel-dojo",
"meditate"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Shengyou Fan",
"email": "shengyoufan@gmail.com"
},
{
"name": "Wei-Cheng Shi",
"email": "tentail10@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.0",
"nesbot/carbon": "^1.22",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.4",
"php-http/message": "^1.6"
},
"require-dev": {
"illuminate/mail": "^5.6",
"illuminate/support": "^5.6",
"php-http/guzzle6-adapter": "^1.1",
"phpunit/phpunit": "^7.2",
"squizlabs/php_codesniffer": "^3.3",
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"Meditate\\SmartDove\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meditate\\SmartDove\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Meditate\\SmartDove\\SmartDoveServiceProvider"
]
}
}
}