forked from craigpaul/laravel-postmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.92 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
66
67
68
69
{
"name": "laraben/laravel-postmark",
"type": "library",
"description": "Laravel package for sending mail via the Postmark API",
"keywords": [
"wildbit",
"postmark",
"laravel",
"mail",
"email",
"coconutcraig",
"laraben"
],
"homepage": "https://github.com/b8ch/laravel-postmark",
"license": "MIT",
"authors": [
{
"name": "Laraben",
"email": "[email protected]",
"homepage": "https://laraben.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"illuminate/mail": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
},
"require-dev": {
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "~6.0|~7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Coconuts\\Mail\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Coconuts\\Mail\\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"
},
"suggest": {
"mvdnbrk/postmark-inbound": "Allows you to process Postmark Inbound Webhooks."
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Coconuts\\Mail\\PostmarkServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}