nsrosenqvist / soma-cache
The Symfony Cache module for the SOMA framework
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/nsrosenqvist/soma-cache
Requires
- php: >=7.0.0
- illuminate/support: ^7.0
- symfony/cache: ^5.0
This package is auto-updated.
Last update: 2025-10-10 00:34:01 UTC
README
Installation
composer require nsrosenqvist/soma-cache
Usage
First register the service provider.
Example configuration:
<?php return [ 'default' => 'files', 'stores' => [ 'files' => [ 'driver' => 'filesystem', 'directory' => get_path('cache').'/files', ], ], ];
To see how to configure all supported cache adapters review how the configuration is processed in CacheProvider::resolveAdapter
.
License
MIT