-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 935 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
38
{
"name": "tomirons/tuxedo",
"description": "Simple transactional email classes/templates for Laravel 5.4 mailables",
"license": "MIT",
"authors": [
{
"name": "Tom Irons",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/mail": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"TomIrons\\Tuxedo\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"TomIrons\\Tuxedo\\TuxedoServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}