Skip to content

Commit

Permalink
Merge pull request #25 from rarog/LaminasForms
Browse files Browse the repository at this point in the history
Upgrading dependencies
  • Loading branch information
matwright authored Jul 11, 2021
2 parents a2f63a2 + 8042750 commit d146254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"php" : "^7.3 || ^8.0",
"laminas/laminas-authentication" : "^2.7",
"laminas/laminas-crypt" : "^3.0",
"laminas/laminas-form" : "^2.14",
"laminas/laminas-form" : "^3.0",
"laminas/laminas-inputfilter" : "^2.10",
"laminas/laminas-loader" : "^2.6",
"laminas/laminas-modulemanager" : "^2.8",
Expand All @@ -44,7 +44,7 @@
"laminas/laminas-mvc-plugin-flashmessenger" : "^1.2",
"laminas/laminas-i18n" : "^2.10",
"laminas/laminas-mvc-plugin-prg" : "^1.2",
"laminas/laminas-hydrator" : "^3.0"
"laminas/laminas-hydrator" : "^4.1"
},
"require-dev" : {
"phpunit/phpunit" : "^9.5.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace LmcUserTest\Factory\Form;

use Laminas\Form\FormElementManager\FormElementManagerV3Polyfill;
use Laminas\Form\FormElementManager;
use Laminas\ServiceManager\ServiceManager;
use LmcUser\Factory\Form\ChangePassword as ChangePasswordFactory;
use LmcUser\Options\ModuleOptions;
Expand All @@ -16,7 +16,7 @@ public function testFactory()
$serviceManager->setService('lmcuser_module_options', new ModuleOptions);
$serviceManager->setService('lmcuser_user_mapper', new UserMapper);

$formElementManager = new FormElementManagerV3Polyfill($serviceManager);
$formElementManager = new FormElementManager($serviceManager);
$serviceManager->setService('FormElementManager', $formElementManager);

$factory = new ChangePasswordFactory();
Expand Down

0 comments on commit d146254

Please sign in to comment.