-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.21 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
{
"name": "fazland/notifire",
"require": {
"php": ">=7.2",
"ext-json": "*",
"symfony/event-dispatcher": "^4.3",
"symfony/options-resolver": "^4.3",
"psr/log": "^1.0"
},
"require-dev": {
"fazland/skebby-rest-client": "^0.2@dev",
"mailgun/mailgun-php": "^2.0",
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^8.0",
"swiftmailer/swiftmailer": "^5.4",
"twig/twig": "^2.12",
"twilio/sdk": "^5.0",
"sendgrid/sendgrid": "^5.1"
},
"config": {
"sort-packages": true
},
"conflict": {
"fazland/skebby-rest-client": "<0.2"
},
"suggest": {
"twilio/sdk": "Send SMS via Twilio",
"fazland/skebby-rest-client": "Send SMS via Skebby",
"mailgun/mailgun-php": "Send emails via Mailgun",
"sendgrid/sendgrid": "Send email via Sendgrid"
},
"autoload": {
"psr-4": {
"Fazland\\Notifire\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Fazland\\Notifire\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"license": "MIT"
}