-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 1001 Bytes
/
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
{
"authors": [
{
"name": "Stev Leibelt",
"email": "artodeto@bazzline.net",
"homepage": "https://artodeto.bazzline.net",
"role": "Developer"
}
],
"description": "free as in freedom cli script to send emails",
"keywords": ["gpl", "free as in freedom", "php", "cli", "command line", "mail", "console", "email"],
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"name": "stevleibelt/php_send_email_via_command_line",
"require": {
"net_bazzline/php_component_cli_environment": "0.3.1",
"net_bazzline/php_component_toolbox": "^1.10",
"php": ">=8.0",
"swiftmailer/swiftmailer": "^6.0"
},
"type": "library",
"autoload": {
"psr-4": {
"De\\Leibelt\\SendMail\\": "source/"
}
},
"suggest": {
"swiftmailer/swiftmailer": "sends mail via swiftmailer",
"zendframework/zend-mail": "sends mail via zend-mail"
}
}