diff --git a/composer.json b/composer.json index 9d67496..954ccf8 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "require": { "sendgrid/sendgrid": "~4.0", "propel/propel": "~2.0@dev", - "uwdoem/framework": "0.*" + "athens/core": "0.*" }, "require-dev": { "phpdocumentor/phpdocumentor": "2.7.*", diff --git a/src/Emailer.php b/src/Emailer.php index 7b4fc6b..6e99dd4 100644 --- a/src/Emailer.php +++ b/src/Emailer.php @@ -2,8 +2,8 @@ namespace Athens\SendGrid; -use UWDOEM\Framework\Emailer\AbstractEmailer; -use UWDOEM\Framework\Email\EmailInterface; +use Athens\Core\Emailer\AbstractEmailer; +use Athens\Core\Email\EmailInterface; use SendGrid; use SendGrid\Response; diff --git a/test/EmailerTest.php b/test/EmailerTest.php index e930a36..58f5c6b 100644 --- a/test/EmailerTest.php +++ b/test/EmailerTest.php @@ -5,8 +5,8 @@ use Athens\SendGrid\Test\Mock\MockEmailer; use Athens\SendGrid\Test\Mock\MockSendGrid; -use UWDOEM\Framework\Email\EmailBuilder; -use UWDOEM\Framework\Email\EmailInterface; +use Athens\Core\Email\EmailBuilder; +use Athens\Core\Email\EmailInterface; use PHPUnit_Framework_TestCase;