Skip to content

Commit

Permalink
[migration]: change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Martins Ungurs committed Apr 23, 2018
1 parent 4cf3b94 commit f431f0b
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor/
.idea
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mungurs/request-logger",
"name": "arbory/request-logger",
"description": "Arbory admin request logger",
"type": "library",
"authors": [
Expand All @@ -9,7 +9,7 @@
}
],
"autoload": {
"psr-4": { "Mungurs\\AdminLog\\" : "src/" }
"psr-4": { "Arbory\\AdminLog\\" : "src/" }
},
"require": {
"laravel/framework": "5.4.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/Form/Serialization.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Mungurs\AdminLog\Admin\Form;
namespace Arbory\AdminLog\Admin\Form;

use Arbory\Base\Admin\Form\Fields\AbstractField;
use Arbory\Base\Html\Elements\Element;
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/Form/SerializationRenderer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Mungurs\AdminLog\Admin\Form;
namespace Arbory\AdminLog\Admin\Form;

use Arbory\Base\Admin\Form\Fields\Renderer\BaseRenderer;
use Arbory\Base\Html\Elements\Element;
Expand Down
4 changes: 2 additions & 2 deletions src/AdminLogServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Mungurs\AdminLog;
namespace Arbory\AdminLog;

use Mungurs\AdminLog\Middleware\LogAdminRequests;
use Arbory\AdminLog\Middleware\LogAdminRequests;
use Illuminate\Support\ServiceProvider;

class AdminLogServiceProvider extends ServiceProvider
Expand Down
6 changes: 3 additions & 3 deletions src/Controllers/Admin/AdminLogController.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

namespace Mungurs\AdminLog\Controllers\Admin;
namespace Arbory\AdminLog\Controllers\Admin;

use Mungurs\AdminLog\Admin\Form\Serialization;
use Arbory\AdminLog\Admin\Form\Serialization;
use App\Http\Controllers\Controller;
use Arbory\Base\Admin\Form;
use Arbory\Base\Admin\Grid;
use Arbory\Base\Admin\Traits\Crudify;
use Illuminate\Database\Eloquent\Model;
use Arbory\Base\Admin\Form\Fields\Hidden;
use Mungurs\AdminLog\Models\AdminLog;
use Arbory\AdminLog\Models\AdminLog;
use Arbory\Base\Admin\Form\Fields\Text;
use Arbory\Base\Admin\Form\Fields\Textarea;

Expand Down
6 changes: 3 additions & 3 deletions src/Middleware/LogAdminRequests.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Mungurs\AdminLog\Middleware;
namespace Arbory\AdminLog\Middleware;

use Closure;
use Mungurs\AdminLog\Models\AdminLog;
use Mungurs\AdminLog\Utils\Sanitizer;
use Arbory\AdminLog\Models\AdminLog;
use Arbory\AdminLog\Utils\Sanitizer;
use Sentinel;
use Illuminate\Http\Request;

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

namespace Mungurs\AdminLog\Models;
namespace Arbory\AdminLog\Models;

use Illuminate\Database\Eloquent\Model;

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

namespace Mungurs\AdminLog\Utils;
namespace Arbory\AdminLog\Utils;

class Sanitizer
{
Expand Down

0 comments on commit f431f0b

Please sign in to comment.