Skip to content

Commit

Permalink
Merge pull request #3 from ramphor/fix/change-namespace-to-ramphor
Browse files Browse the repository at this point in the history
Change namespace to Ramphor
puleeno authored Sep 15, 2020
2 parents 4fda22c + 9268fe1 commit 8a1072f
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",
@@ -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
{
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
{
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
{
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
{
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
{

0 comments on commit 8a1072f

Please sign in to comment.