<?php declare(strict_types=1);

return \Symfony\Component\DependencyInjection\Loader\Configurator\App::config([
    'framework' => [
        'cache' => [
            'app' => 'cache.adapter.filesystem',
            'pools' => [
                'file_adapter_cache' => ['adapter' => 'cache.adapter.filesystem'],
                'array_adapter_cache' => ['adapter' => 'cache.adapter.array'],
            ],
        ],
    ],
]);
