-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 880 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 880 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
{
"name": "jowclides/notification",
"description": "This is a library that uses composer as the basis for generating e-mail notifications",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Emerson P Silva",
"email": "[email protected]",
"homepage": "https://www.coupled.com.br",
"role": "Full Stack PHP Developer"
},
{
"name": "João Loriato",
"email": "[email protected]",
"homepage": "https://www.coupled.com.br",
"role": "Full Stack PHP Developer"
}
],
"minimum-stability": "dev",
"require": {
"phpmailer/phpmailer": "6.0.3"
},
"config": {
"vendor-dir": "lib_ext"
},
"autoload": {
"psr-4": {
"Notification\\": "_app"
}
}
}