Skip to content

Commit c21ede2

Browse files
committed
Merge branch '2.x'
# Conflicts: # composer.json
2 parents 70f038a + 146b8b4 commit c21ede2

18 files changed

+58
-47
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor
2-
composer.lock
2+
composer.lock
3+
.phpunit.result.cache

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Tom Irons
3+
Copyright (c) 2017 Tom Irons
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tomirons/tuxedo",
3-
"description": "Simple transactional email classes/templates for Laravel mailables",
3+
"description": "Simple transactional email classes/templates for Laravel 5.4 mailables",
44
"license": "MIT",
55
"authors": [
66
{
@@ -9,14 +9,14 @@
99
}
1010
],
1111
"require": {
12-
"php": ">=7.0",
13-
"illuminate/database": "5.5.*",
14-
"illuminate/mail": "5.5.*",
15-
"illuminate/support": "5.5.*"
12+
"php": "^7.3",
13+
"illuminate/database": "^6.0|^7.0|^8.0",
14+
"illuminate/mail": "^6.0|^7.0|^8.0",
15+
"illuminate/support": "^6.0|^7.0|^8.0"
1616
},
1717
"require-dev": {
18-
"mockery/mockery": "~0.9.4",
19-
"phpunit/phpunit": "~5.7"
18+
"mockery/mockery": "^1.4",
19+
"phpunit/phpunit": "^9.2"
2020
},
2121
"autoload": {
2222
"psr-4": {
@@ -25,7 +25,7 @@
2525
},
2626
"extra": {
2727
"branch-alias": {
28-
"dev-master": "2.0-dev"
28+
"dev-master": "2.x-dev"
2929
},
3030
"laravel": {
3131
"providers": [

phpunit.xml.dist

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,16 @@
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
10-
stopOnError="false"
1110
stopOnFailure="false"
12-
syntaxCheck="true"
13-
verbose="true"
1411
>
12+
<coverage>
13+
<include>
14+
<directory suffix=".php">src/</directory>
15+
</include>
16+
</coverage>
1517
<testsuites>
16-
<testsuite name="Tuxedo Test Suite">
17-
<directory suffix="Test.php">./tests</directory>
18+
<testsuite name="Unit">
19+
<directory suffix="Test.php">./tests/Unit</directory>
1820
</testsuite>
1921
</testsuites>
20-
<filter>
21-
<whitelist>
22-
<directory suffix=".php">src/</directory>
23-
</whitelist>
24-
</filter>
2522
</phpunit>

resources/views/html/alert/box.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<td class="alert-content alert-{{ $type }}">
44
<table width="100%" cellpadding="0" cellspacing="0">
55
<tr>
6-
<td class="alert-item">
7-
{{ Illuminate\Mail\Markdown::parse($slot) }}
8-
</td>
6+
<td class="alert-item">{{ Illuminate\Mail\Markdown::parse($slot) }}</td>
97
</tr>
108
</table>
119
</td>

resources/views/html/invoice/table.blade.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<td>
44
<h3>{{ $data['id'] }}</h3></td>
55
<td>
6-
<h3 class="align-right">{{ $data['date'] }}</h3></td>
6+
<h3 class="align-right">{{ $data['date'] }}</h3>
7+
</td>
78
</tr>
89
<tr>
910
<td colspan="2">
@@ -53,4 +54,4 @@
5354
</table>
5455
</td>
5556
</tr>
56-
</table>
57+
</table>

resources/views/markdown/alert/box.blade.php

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
foo
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)