Skip to content

Commit

Permalink
Switched from Zend to Laminas
Browse files Browse the repository at this point in the history
  • Loading branch information
jschultze committed Mar 5, 2024
1 parent ee8dedb commit 4966921
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
* @link https://github.com/dmj/vf2-proxy
*/
namespace BeluginoCover;
use Zend\ModuleManager\ModuleManager,
Zend\Mvc\MvcEvent;
use Laminas\ModuleManager\ModuleManager,
Laminas\Mvc\MvcEvent;

/**
* Template for ZF2 module for storing local overrides.
Expand Down Expand Up @@ -58,7 +58,7 @@ public function getConfig()
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'Laminas\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
Expand Down
2 changes: 1 addition & 1 deletion src/BeluginoCover/Controller/CoverControllerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace BeluginoCover\Controller;

use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Factory\FactoryInterface;
use Laminas\ServiceManager\Factory\FactoryInterface;

/**
* Cover controller factory.
Expand Down
2 changes: 1 addition & 1 deletion src/BeluginoCover/Cover/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Loader extends \VuFind\Cover\Loader
/**
* Constructor
*
* @param \Zend\Config\Config $config VuFind configuration
* @param \Laminas\Config\Config $config VuFind configuration
* @param ApiManager $manager Plugin manager for API handlers
* @param \VuFindTheme\ThemeInfo $theme VuFind theme tools
* @param \VuFindHttp\HttpService $httpService HTTP client factory
Expand Down
2 changes: 1 addition & 1 deletion src/BeluginoCover/Cover/LoaderFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace BeluginoCover\Cover;

use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Factory\FactoryInterface;
use Laminas\ServiceManager\Factory\FactoryInterface;

/**
* Cover loader factory.
Expand Down

0 comments on commit 4966921

Please sign in to comment.