-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.56 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
{
"name": "matchory/laravel-mailgun-templates-channel",
"description": "A Laravel notification channel for Mailgun's templated messages.",
"type": "library",
"require": {
"php": ">=8.1",
"mailgun/mailgun-php": "^3.5",
"illuminate/contracts": "^8.67|^9.19|^10.0"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"jetbrains/phpstorm-attributes": "^1.0",
"orchestra/testbench": "^7.6|^8.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.24"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Matchory\\MailgunTemplatedMessages\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Matchory\\MailgunTemplatedMessages\\Tests\\": "tests/"
}
},
"keywords": [
"laravel",
"mailgun",
"notifications",
"channel",
"templated-messages"
],
"authors": [
{
"name": "Moritz Friedrich",
"email": "moritz@matchory.com"
}
],
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Matchory\\MailgunTemplatedMessages\\MailgunTemplatesChannelServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyze:ci": "vendor/bin/psalm --no-cache --show-info=true --long-progress --monochrome --stats --report=./test-reports/psalm.junit.xml",
"analyze": "vendor/bin/psalm",
"test:ci": "vendor/bin/phpunit --no-interaction --log-junit=./test-reports/phpunit.junit.xml",
"test": "vendor/bin/phpunit"
}
}