Skip to content

Commit

Permalink
Change namespace to Hammerstone
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondfrancis committed Mar 31, 2022
1 parent 0ff658f commit 0bffae4
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "resolute/laravel-pseudo-daemon",
"name": "hammerstone/laravel-pseudo-daemon",
"description": "A Laravel package to mimic daemons via scheduled commands without having to change server configuration.",
"type": "library",
"license": "MIT",
Expand All @@ -20,18 +20,18 @@
},
"autoload": {
"psr-4": {
"Resolute\\PseudoDaemon\\": "src/"
"Hammerstone\\PseudoDaemon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Resolute\\PseudoDaemon\\Tests\\": "tests/"
"Hammerstone\\PseudoDaemon\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Resolute\\PseudoDaemon\\PseudoDaemonServiceProvider"
"Hammerstone\\PseudoDaemon\\PseudoDaemonServiceProvider"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Resolute\\PseudoDaemon Test Suite">
<testsuite name="Hammerstone\\PseudoDaemon Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Laravel package to mimic daemons via scheduled commands without having to chan

You can install the package via composer:

`composer require resolute/laravel-pseudo-daemon`
`composer require Hammerstone/laravel-pseudo-daemon`

# Basic Usage

Expand All @@ -19,7 +19,7 @@ Add the `IsPseudoDaemon` trait to any of your Laravel Commands and call `runAsPs
```php
class TestCommand extends Command
{
use \Resolute\PseudoDaemon\IsPseudoDaemon;
use \Hammerstone\PseudoDaemon\IsPseudoDaemon;

public function handle()
{
Expand Down
2 changes: 1 addition & 1 deletion src/IsPseudoDaemon.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon;
namespace Hammerstone\PseudoDaemon;

use Illuminate\Support\Carbon;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion src/PseudoDaemonControl.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon;
namespace Hammerstone\PseudoDaemon;

class PseudoDaemonControl
{
Expand Down
2 changes: 1 addition & 1 deletion src/PseudoDaemonServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon;
namespace Hammerstone\PseudoDaemon;

use Illuminate\Console\Scheduling\CallbackEvent;
use Illuminate\Console\Scheduling\Event;
Expand Down
4 changes: 2 additions & 2 deletions tests/EventDaemonizeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon\Tests;
namespace Hammerstone\PseudoDaemon\Tests;

use Illuminate\Console\Scheduling\CacheEventMutex;
use Illuminate\Console\Scheduling\Event;
use Orchestra\Testbench\TestCase;
use Resolute\PseudoDaemon\PseudoDaemonServiceProvider;
use Hammerstone\PseudoDaemon\PseudoDaemonServiceProvider;

class EventDaemonizeTest extends TestCase
{
Expand Down
6 changes: 3 additions & 3 deletions tests/PseudoDaemonTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon\Tests;
namespace Hammerstone\PseudoDaemon\Tests;

use Illuminate\Support\Carbon;
use Mockery;
use Orchestra\Testbench\TestCase;
use Resolute\PseudoDaemon\PseudoDaemonControl;
use Resolute\PseudoDaemon\Tests\Support\TestCommand;
use Hammerstone\PseudoDaemon\PseudoDaemonControl;
use Hammerstone\PseudoDaemon\Tests\Support\TestCommand;

class PseudoDaemonTraitTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Support/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis>
*/

namespace Resolute\PseudoDaemon\Tests\Support;
namespace Hammerstone\PseudoDaemon\Tests\Support;


use Illuminate\Console\Command;
use Resolute\PseudoDaemon\IsPseudoDaemon;
use Hammerstone\PseudoDaemon\IsPseudoDaemon;

class TestCommand extends Command
{
Expand Down

0 comments on commit 0bffae4

Please sign in to comment.