Skip to content

Commit 8cf7923

Browse files
Merge pull request #11 from stackkit/development
Revert "Revert "change namespace""
2 parents d47035f + 825da6b commit 8cf7923

17 files changed

+20
-20
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "buildcode/laravel-database-emails",
2+
"name": "stackkit/laravel-database-emails",
33
"description": "Store and send e-mails using the database",
44
"license": "MIT",
55
"authors": [
@@ -10,7 +10,7 @@
1010
],
1111
"autoload": {
1212
"psr-4": {
13-
"Buildcode\\LaravelDatabaseEmails\\": "src/"
13+
"Stackkit\\LaravelDatabaseEmails\\": "src/"
1414
}
1515
},
1616
"autoload-dev": {
@@ -21,7 +21,7 @@
2121
"extra": {
2222
"laravel": {
2323
"providers": [
24-
"Buildcode\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
24+
"Stackkit\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
2525
]
2626
}
2727
},

src/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
class Config
66
{

src/Email.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Exception;
66
use Carbon\Carbon;

src/EmailComposer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Illuminate\Mail\Mailable;
66

src/Encrypter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
class Encrypter
66
{

src/HasEncryptedAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Illuminate\Contracts\Encryption\DecryptException;
66

src/LaravelDatabaseEmailsServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Illuminate\Support\ServiceProvider;
66

src/MailableReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Exception;
66
use function call_user_func_array;

src/Preparer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Carbon\Carbon;
66

src/SendEmailsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Buildcode\LaravelDatabaseEmails;
3+
namespace Stackkit\LaravelDatabaseEmails;
44

55
use Exception;
66
use Illuminate\Console\Command;

0 commit comments

Comments
 (0)