Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Feb 26, 2023
1 parent f5da0e6 commit 641822e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Settings/General.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Df\Oro\Settings;
namespace Dfe\Oro\Settings;
# 2017-06-01
/** @method static General s() */
final class General extends \Df\Config\Settings {
Expand Down
2 changes: 1 addition & 1 deletion Test/Basic.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Df\Oro\Test;
namespace Dfe\Oro\Test;
# 2017-06-01
final class Basic extends TestCase {
/**
Expand Down
4 changes: 2 additions & 2 deletions Test/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace Df\Oro\Test;
namespace Dfe\Oro\Test;
/**
* 2017-06-01
* @see \Df\Oro\Test\Basic
* @see \Dfe\Oro\Test\Basic
*/
abstract class TestCase extends \Df\Core\TestCase {}
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/oro"
,"version": "1.2.1"
,"version": "1.2.2"
,"description": "Oro Platform integration with Magento 2"
,"type": "magento2-module"
,"homepage": "https://oplatform.club"
Expand All @@ -12,5 +12,5 @@
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=4.4.0"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Df\\Oro\\": ""}}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Oro\\": ""}}
}
2 changes: 1 addition & 1 deletion lib/main.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
use Df\Core\Exception as DFE;
use Df\Oro\Settings\General as S;
use Dfe\Oro\Settings\General as S;
use Zend_Http_Client as C;
/**
* 2017-06-04
Expand Down
2 changes: 1 addition & 1 deletion registration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
use Magento\Framework\Component\ComponentRegistrar as R;
R::register(R::MODULE, 'Df_Oro', __DIR__);
R::register(R::MODULE, 'Dfe_Oro', __DIR__);
# 2017-04-25, 2017-12-13
# Unfortunately, I have not found a way to make this code reusable among my modules.
# I tried to move this code to a `/lib` function like df_lib(), but it raises a «chicken and egg» problem,
Expand Down

0 comments on commit 641822e

Please sign in to comment.