Skip to content

Commit 641822e

Browse files
1.2.2
1 parent f5da0e6 commit 641822e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Settings/General.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Df\Oro\Settings;
2+
namespace Dfe\Oro\Settings;
33
# 2017-06-01
44
/** @method static General s() */
55
final class General extends \Df\Config\Settings {

Test/Basic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Df\Oro\Test;
2+
namespace Dfe\Oro\Test;
33
# 2017-06-01
44
final class Basic extends TestCase {
55
/**

Test/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
2-
namespace Df\Oro\Test;
2+
namespace Dfe\Oro\Test;
33
/**
44
* 2017-06-01
5-
* @see \Df\Oro\Test\Basic
5+
* @see \Dfe\Oro\Test\Basic
66
*/
77
abstract class TestCase extends \Df\Core\TestCase {}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mage2pro/oro"
3-
,"version": "1.2.1"
3+
,"version": "1.2.2"
44
,"description": "Oro Platform integration with Magento 2"
55
,"type": "magento2-module"
66
,"homepage": "https://oplatform.club"
@@ -12,5 +12,5 @@
1212
"role": "Developer"
1313
}]
1414
,"require": {"mage2pro/core": ">=4.4.0"}
15-
,"autoload": {"files": ["registration.php"], "psr-4": {"Df\\Oro\\": ""}}
15+
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Oro\\": ""}}
1616
}

lib/main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
use Df\Core\Exception as DFE;
3-
use Df\Oro\Settings\General as S;
3+
use Dfe\Oro\Settings\General as S;
44
use Zend_Http_Client as C;
55
/**
66
* 2017-06-04

registration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
use Magento\Framework\Component\ComponentRegistrar as R;
3-
R::register(R::MODULE, 'Df_Oro', __DIR__);
3+
R::register(R::MODULE, 'Dfe_Oro', __DIR__);
44
# 2017-04-25, 2017-12-13
55
# Unfortunately, I have not found a way to make this code reusable among my modules.
66
# I tried to move this code to a `/lib` function like df_lib(), but it raises a «chicken and egg» problem,

0 commit comments

Comments
 (0)