We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed178f commit 8ae940eCopy full SHA for 8ae940e
website/docs/other-frameworks.mdx
@@ -261,6 +261,10 @@ return new Picotainer([
261
return $builder->createMiddleware();
262
},
263
CacheInterface::class => function() {
264
+ // Any PSR-16 cache should work - APCu is recommended for good
265
+ // performance, but it requires that module to be enabled. For
266
+ // small scale testing with zero dependencies, FilesystemCache
267
+ // can be used instead.
268
return new ApcuCache();
269
270
Schema::class => function(ContainerInterface $container) {
0 commit comments