From 0d6c38bc34f321f6bfde80a44b25bc7c2d45ec25 Mon Sep 17 00:00:00 2001 From: Adam Rodriguez Date: Mon, 4 Nov 2019 16:43:05 -0700 Subject: [PATCH 1/4] keep production server directories clean --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..18427f0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +.gitattributes export-ignore +.gitignore export-ignore +phpunit.xml export-ignore +CONTRIBUTING.md export-ignore +/tests export-ignore From 53807acbb2f423c9a1d5bf11be2d2b8dab735705 Mon Sep 17 00:00:00 2001 From: Adam Rodriguez Date: Mon, 4 Nov 2019 16:57:22 -0700 Subject: [PATCH 2/4] rename LICENSE add attributes --- .gitattributes | 2 ++ LICENSE => LICENSE.md | 0 2 files changed, 2 insertions(+) rename LICENSE => LICENSE.md (100%) diff --git a/.gitattributes b/.gitattributes index 18427f0..4b7dc45 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,4 +2,6 @@ .gitignore export-ignore phpunit.xml export-ignore CONTRIBUTING.md export-ignore +LICENSE.md export-ignore +composer.lock export-ignore /tests export-ignore diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md From 1930ebfdda202c9452e4bf57b2dccdeac60faaf5 Mon Sep 17 00:00:00 2001 From: Adam Rodriguez Date: Mon, 4 Nov 2019 17:17:41 -0700 Subject: [PATCH 3/4] should require illuminate/support since its referenced directly --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index ee09df7..25a41d4 100644 --- a/composer.json +++ b/composer.json @@ -11,6 +11,7 @@ "type": "project", "require": { "php": "^7.2", + "illuminate/support": "~5.5|^6.0", "illuminate/mail": "~5.5|^6.0", "illuminate/view": "~5.5|^6.0" }, From 51a2bd333b85187e215fdad45bd54490a1e64d21 Mon Sep 17 00:00:00 2001 From: Bryan Date: Wed, 13 Nov 2019 11:17:29 -0700 Subject: [PATCH 4/4] Updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 46d2800..db5dc89 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# laravel-mail-assertions +# Laravel Mail Assertions Make assertions on emails in Laravel 6 This is a simple package to allow you to make assertions on emails sent with laravel.