Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change namespace to Ramphor #3

Merged
merged 1 commit into from
Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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