Skip to content

Commit

Permalink
Change namespace to Ramphor
Browse files Browse the repository at this point in the history
  • Loading branch information
puleeno committed Sep 15, 2020
1 parent 1c698c7 commit 9268fe1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "puleeno/wallery",
"name": "ramphor/wallery",
"description": "WordPress gallery for meta box and frontend post",
"version": "1.0.5",
"type": "library",
Expand All @@ -14,7 +14,7 @@
"require": {},
"autoload": {
"psr-4": {
"Puleeno\\Wallery\\": "src/"
"Ramphor\\Wallery\\": "src/"
}
}
}
4 changes: 2 additions & 2 deletions src/Abstracts/Factory.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace Puleeno\Wallery\Abstracts;
namespace Ramphor\Wallery\Abstracts;

use Puleeno\Wallery\Interfaces\Factory as FactoryInterfaces;
use Ramphor\Wallery\Interfaces\Factory as FactoryInterfaces;

abstract class Factory implements FactoryInterfaces
{
Expand Down
4 changes: 2 additions & 2 deletions src/Factory/MetaboxFactory.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace Puleeno\Wallery\Factory;
namespace Ramphor\Wallery\Factory;

use Puleeno\Wallery\Abstracts\Factory;
use Ramphor\Wallery\Abstracts\Factory;

class MetaboxFactory extends Factory
{
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/Factory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Puleeno\Wallery\Interfaces;
namespace Ramphor\Wallery\Interfaces;

interface Factory
{
Expand Down
6 changes: 3 additions & 3 deletions src/Wallery.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Puleeno\Wallery;
namespace Ramphor\Wallery;

use Puleeno\Wallery\Abstracts\Factory;
use Puleeno\Wallery\Wallery\Ajax as WalleryAjax;
use Ramphor\Wallery\Abstracts\Factory;
use Ramphor\Wallery\Wallery\Ajax as WalleryAjax;

class Wallery
{
Expand Down
2 changes: 1 addition & 1 deletion src/Wallery/Ajax.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Puleeno\Wallery\Wallery;
namespace Ramphor\Wallery\Wallery;

class Ajax
{
Expand Down

0 comments on commit 9268fe1

Please sign in to comment.