LaminasStorageCache issue after migration from Zend Framework 3 to Laminas

I migrated a project from Zend Framework 3 to Laminas.

Since I occur an error with Doctrine and DoctrineModuleCacheLaminasStorageCache.

The message says:
Service with name “DoctrineModuleCacheLaminasStorageCache” could not be created. Reason: Could not resolve value for parameter “storage” of type LaminasCacheStorageStorageInterface in class DoctrineModuleCacheLaminasStorageCache (requested as DoctrineModuleCacheLaminasStorageCache)

I haven’t defined any “storage” parameter anywhere.

This error happend when I try to access to the database

$this->getServiceLocator()->get('DoctrineORMEntityManager');

I can get the ServiceLocator, it returns an object, but can’t reach the EntityManager.
This EntityManager subcall the service locator several times to create a lot of instances of differents Laminas modules, and fails on the LaminasStorageCache as the error message said.

I have a simple MySQL in localhost and this simple configuration regarding Doctrine:

'doctrine' => array(
        'connection' => array(
            'orm_default' => array(
                'driverClass' => DoctrineDBALDriverPDOMySQLDriver::class,
                'params' => array(
                    'host'     => 'localhost',
                    'port'     => '3306',
                    'user'     => 'root',
                    'password' => '',
                    'dbname'   => 'mybase',
                    'charset'  => 'utf8'
                )
            )
        ),

I don’t understand this error and it’s not linked to my application code, it comes from Laminas deep ^^
It should be a bad configuration but I can’t figure out what :’
I deep into the code and tried to configure the Doctrine cache, but without any difference.

If anyone can help me or explain me what I missed.

By the way, I would like to add that I have others projets, successfully migrated to Laminas, I don’t see any difference in the configuration files and they works well.