-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 861 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
32
33
34
35
36
37
{
"name": "tadcms/email-template",
"version": "1.0.1",
"description": "Add and manager email template for Laravel",
"keywords": [
"laravel email template",
"email template for laravel",
"manager email template"
],
"license": "MIT",
"authors": [
{
"name": "The Anh Dang",
"email": "dangtheanh16@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"laravel/laravel": "^6.0 | ^7.0",
"phpunit/phpunit": "6.0 | 7.0 | 7.5 | 8.4 | ^8.5 | ^9.3"
},
"autoload": {
"psr-4": {
"Tadcms\\EmailTemplate\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Tadcms\\EmailTemplate\\EmailTemplateServiceProvider"
]
}
}
}