-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (41 loc) · 1.14 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
{
"name": "pulkitjalan/contact-form-backend",
"description": "Simple contact form backend",
"require": {
"illuminate/http": "^11.0",
"illuminate/support": "^11.0",
"symfony/amazon-mailer": "^7.0",
"symfony/brevo-mailer": "^7.0",
"symfony/infobip-mailer": "^7.0",
"symfony/mail-pace-mailer": "^7.0",
"symfony/mailchimp-mailer": "^7.0",
"symfony/mailer": "^7.0",
"symfony/mailer-send-mailer": "^7.0",
"symfony/mailgun-mailer": "^7.0",
"symfony/mailjet-mailer": "^7.0",
"symfony/postmark-mailer": "^7.0",
"symfony/scaleway-mailer": "^7.0",
"symfony/sendgrid-mailer": "^7.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"PulkitJalan\\ContactForm\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PulkitJalan\\ContactForm\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
}
}
}