This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Description
In Controller\LazyControllerAbstractFacatory.php there is a reference to zend-serializer:
use Zend\Serializer\AdapterPluginManager as SerializerAdapterManager;
Therefore the zend-serializer is required in the composer.json dependencies or at minimum in the 'suggest' section.
Another option would be to remove the SerializerAdapterManager alias:
SerializerAdapterManager::class => 'SerializerAdapterManager',
or replace the SerializerAdapterManager::class with the actual class name string.