Skip to content

Commit 9ddae56

Browse files
1.2.5
1 parent 192af1a commit 9ddae56

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Test/Basic.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ function t02_orders_stripe():void {
1717
$a['id'], $a['country']
1818
];}, df_oro_get_list('customers', [], [], true));
1919
$websites = array_values(df_map(
20-
df_sort_l(
20+
df_sort(
2121
array_filter(
2222
df_oro_get_list('orders', ['product' => 1], ['website'], true)['included']
2323
,function(array $a):bool {return
2424
'extenddfwebsites' === $a['type']
2525
&& 'magento_2' === dfa_deep($a, 'relationships/platform/data/id')
2626
;}
27-
), '', function(array $a):string {return dfa_deep($a, 'attributes/domain');}
27+
)
28+
,function(array $a):string {return dfa_deep($a, 'attributes/domain');}
29+
,true
2830
), function(array $a) use($customers):array {$at = $a['attributes']; return [
2931
'country' => $customers[dfa_deep($a, 'relationships/dfcustomer_websites/data/id')]
3032
,'edition' => $at['m2_is_enterprise'] ? 'Enterprise' : 'Community'

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.4"
3+
,"version": "1.2.5"
44
,"description": "Oro Platform integration with Magento 2"
55
,"type": "magento2-module"
66
,"homepage": "https://oplatform.club"
@@ -11,6 +11,6 @@
1111
"homepage": "https://upwork.com/fl/mage2pro",
1212
"role": "Developer"
1313
}]
14-
,"require": {"mage2pro/core": ">=10.8.2"}
14+
,"require": {"mage2pro/core": ">=10.8.3"}
1515
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Oro\\": ""}}
1616
}

0 commit comments

Comments
 (0)