Skip to content

Commit b899606

Browse files
authored
Merge pull request #5338 from magento-trigger/MC-31567
[TR] MC-31567: Migrate ZF components to Laminas part 2
2 parents e71e92e + bcd8dc1 commit b899606

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"colinmollenhour/cache-backend-redis": "1.10.6",
3434
"colinmollenhour/credis": "1.10.0",
3535
"colinmollenhour/php-redis-session-abstract": "~1.4.0",
36-
"composer/composer": "^1.6",
36+
"composer/composer": "^1.9",
3737
"elasticsearch/elasticsearch": "~2.0||~5.1||~6.1",
3838
"guzzlehttp/guzzle": "^6.3.3",
3939
"laminas/laminas-captcha": "^2.7.1",
@@ -320,7 +320,7 @@
320320
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
321321
"Magento\\Setup\\": "setup/src/Magento/Setup/",
322322
"Magento\\": "app/code/Magento/",
323-
"Laminas\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
323+
"Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
324324
},
325325
"psr-0": {
326326
"": [

composer.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/internal/Magento/Framework/composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
},
1212
"require": {
1313
"php": "~7.1.3||~7.2.0||~7.3.0",
14+
"ext-bcmath": "*",
1415
"ext-curl": "*",
1516
"ext-dom": "*",
1617
"ext-gd": "*",
@@ -20,26 +21,25 @@
2021
"ext-openssl": "*",
2122
"ext-simplexml": "*",
2223
"ext-xsl": "*",
23-
"ext-bcmath": "*",
2424
"lib-libxml": "*",
2525
"colinmollenhour/php-redis-session-abstract": "~1.4.0",
26-
"composer/composer": "^1.6",
27-
"magento/zendframework1": "~1.14.2",
28-
"monolog/monolog": "^1.17",
29-
"wikimedia/less.php": "~1.8.0",
30-
"symfony/console": "~4.1.0||~4.2.0||~4.3.0||~4.4.0",
31-
"symfony/process": "~4.1.0||~4.2.0||~4.3.0||~4.4.0",
32-
"tedivm/jshrink": "~1.3.0",
26+
"composer/composer": "^1.9",
27+
"guzzlehttp/guzzle": "^6.3.3",
3328
"laminas/laminas-code": "~3.3.0",
3429
"laminas/laminas-crypt": "^2.6.0",
3530
"laminas/laminas-http": "^2.6.0",
31+
"laminas/laminas-mail": "^2.9.0",
32+
"laminas/laminas-mime": "^2.5.0",
3633
"laminas/laminas-mvc": "~2.7.0",
3734
"laminas/laminas-stdlib": "^3.2.1",
3835
"laminas/laminas-uri": "^2.5.1",
3936
"laminas/laminas-validator": "^2.6.0",
40-
"laminas/laminas-mail": "^2.9.0",
41-
"laminas/laminas-mime": "^2.5.0",
42-
"guzzlehttp/guzzle": "^6.3.3"
37+
"magento/zendframework1": "~1.14.2",
38+
"monolog/monolog": "^1.17",
39+
"symfony/console": "~4.1.0||~4.2.0||~4.3.0||~4.4.0",
40+
"symfony/process": "~4.1.0||~4.2.0||~4.3.0||~4.4.0",
41+
"tedivm/jshrink": "~1.3.0",
42+
"wikimedia/less.php": "~1.8.0"
4343
},
4444
"archive": {
4545
"exclude": [

setup/config/module.config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
'controllers' => [
3939
'abstract_factories' => [
40-
\Laminas\Mvc\Controller\LazyControllerAbstractFactory::class,
40+
\Zend\Mvc\Controller\LazyControllerAbstractFactory::class,
4141
],
4242
],
4343
];

setup/src/Zend/Mvc/Controller/LazyControllerAbstractFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
declare(strict_types=1);
1010

11-
namespace Laminas\Mvc\Controller;
11+
namespace Zend\Mvc\Controller;
1212

1313
use Interop\Container\ContainerInterface;
1414
use ReflectionClass;

0 commit comments

Comments
 (0)