-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (36 loc) · 931 Bytes
/
composer.json
File metadata and controls
37 lines (36 loc) · 931 Bytes
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
{
"name": "depage/mail",
"description": "depage-mail is a small simple mail generator and sender and a more convinient wrapper for the mail() function, when something bigger is unnecessary or not required.",
"type": "library",
"keywords": [
"mail",
"email"
],
"require": {
"php": " >= 7.2"
},
"require-dev": {
"phpunit/phpunit": "*",
"ext-mailparse": "*"
},
"autoload": {
"psr-4": { "Depage\\Mail\\": "" }
},
"support": {
"email": "info@depage.net",
"source": "https://github.com/depage/depage-mail",
"issues": "https://github.com/depage/depage-mail/issues"
},
"time": "2014-10-16",
"license": [
"MIT",
"GPL-2.0"
],
"authors": [
{
"name": "Frank Hellenkamp",
"homepage": "http://depage.net",
"role": "Developer"
}
]
}