Skip to content

Revert "Revert "change namespace"" #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "buildcode/laravel-database-emails",
"name": "stackkit/laravel-database-emails",
"description": "Store and send e-mails using the database",
"license": "MIT",
"authors": [
Expand All @@ -10,7 +10,7 @@
],
"autoload": {
"psr-4": {
"Buildcode\\LaravelDatabaseEmails\\": "src/"
"Stackkit\\LaravelDatabaseEmails\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -21,7 +21,7 @@
"extra": {
"laravel": {
"providers": [
"Buildcode\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
"Stackkit\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

class Config
{
Expand Down
2 changes: 1 addition & 1 deletion src/Email.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Exception;
use Carbon\Carbon;
Expand Down
2 changes: 1 addition & 1 deletion src/EmailComposer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Illuminate\Mail\Mailable;

Expand Down
2 changes: 1 addition & 1 deletion src/Encrypter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

class Encrypter
{
Expand Down
2 changes: 1 addition & 1 deletion src/HasEncryptedAttributes.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Illuminate\Contracts\Encryption\DecryptException;

Expand Down
2 changes: 1 addition & 1 deletion src/LaravelDatabaseEmailsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Illuminate\Support\ServiceProvider;

Expand Down
2 changes: 1 addition & 1 deletion src/MailableReader.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Exception;
use function call_user_func_array;
Expand Down
2 changes: 1 addition & 1 deletion src/Preparer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Carbon\Carbon;

Expand Down
2 changes: 1 addition & 1 deletion src/SendEmailsCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Exception;
use Illuminate\Console\Command;
Expand Down
2 changes: 1 addition & 1 deletion src/Sender.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Illuminate\Mail\Mailer;
use Illuminate\Mail\Message;
Expand Down
2 changes: 1 addition & 1 deletion src/Store.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Carbon\Carbon;
use Illuminate\Database\Eloquent\Collection;
Expand Down
2 changes: 1 addition & 1 deletion src/Validator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Buildcode\LaravelDatabaseEmails;
namespace Stackkit\LaravelDatabaseEmails;

use Exception;
use Carbon\Carbon;
Expand Down
2 changes: 1 addition & 1 deletion tests/MailableReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Tests;

use Illuminate\Mail\Mailable;
use Buildcode\LaravelDatabaseEmails\Email;
use Stackkit\LaravelDatabaseEmails\Email;

class MailableReaderTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/SendEmailsCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
use Buildcode\LaravelDatabaseEmails\Store;
use Stackkit\LaravelDatabaseEmails\Store;

class SendEmailsCommandTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Tests;

use Eloquent;
use Buildcode\LaravelDatabaseEmails\Email;
use Stackkit\LaravelDatabaseEmails\Email;

class TestCase extends \Orchestra\Testbench\TestCase
{
Expand Down Expand Up @@ -66,7 +66,7 @@ protected function getPackageProviders($app)
{
return [
\Orchestra\Database\ConsoleServiceProvider::class,
\Buildcode\LaravelDatabaseEmails\LaravelDatabaseEmailsServiceProvider::class,
\Stackkit\LaravelDatabaseEmails\LaravelDatabaseEmailsServiceProvider::class,
];
}

Expand Down
2 changes: 1 addition & 1 deletion tests/ValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon;
use InvalidArgumentException;
use Buildcode\LaravelDatabaseEmails\Email;
use Stackkit\LaravelDatabaseEmails\Email;

class ValidatorTest extends TestCase
{
Expand Down