Skip to content

Commit

Permalink
Update namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
miguilimzero committed Aug 7, 2023
1 parent 1520d36 commit ea1ddc8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Laravel SingleStore Backup is a package that makes it easy to make backups of yo
You can install the package via composer:

```sh
composer require srdante/laravel-singlestore-backup
composer require miguilim/laravel-singlestore-backup
```

## Configuring
Expand Down
12 changes: 3 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
{
"name": "srdante/laravel-singlestore-backup",
"name": "miguilim/laravel-singlestore-backup",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Srdante\\LaravelSinglestoreBackup\\": "src/"
"Miguilim\\LaravelSinglestoreBackup\\": "src/"
}
},
"authors": [
{
"name": "srdante",
"email": "[email protected]"
}
],
"require": {
"illuminate/config": "^9.0|^10.2",
"illuminate/console": "^9.0|^10.2",
Expand All @@ -22,7 +16,7 @@
"extra": {
"laravel": {
"providers": [
"Srdante\\LaravelSinglestoreBackup\\LaravelSinglestoreBackupServiceProvider"
"Miguilim\\LaravelSinglestoreBackup\\LaravelSinglestoreBackupServiceProvider"
]
}
},
Expand Down
5 changes: 2 additions & 3 deletions src/Console/SinglestoreBackupCommand.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php

namespace Srdante\LaravelSinglestoreBackup\Console;
namespace Miguilim\LaravelSinglestoreBackup\Console;

use Illuminate\Console\Command;
use Illuminate\Database\QueryException;
use Illuminate\Support\Facades\DB;
use InvalidArgumentException;
use Srdante\LaravelSinglestoreBackup\SinglestoreBackup;
use Miguilim\LaravelSinglestoreBackup\SinglestoreBackup;

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

namespace Srdante\LaravelSinglestoreBackup;
namespace Miguilim\LaravelSinglestoreBackup;

use Illuminate\Support\ServiceProvider;

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

namespace Srdante\LaravelSinglestoreBackup;
namespace Miguilim\LaravelSinglestoreBackup;

use Illuminate\Support\Facades\DB;

Expand Down

0 comments on commit ea1ddc8

Please sign in to comment.