Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Westin Shafer authored and Westin Shafer committed Sep 14, 2017
1 parent 7f24fb2 commit 6cff37b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Expand Up @@ -522,7 +522,10 @@ return [

'caches' => [
// Array Keys are the names used for the cache
'cache_one' => [
//
// Note: You can specify "default" here to overwrite the default settings for the
// default cache. Memory is used if not specified
'default' => [
'type' => 'psr6',
// Cache specific options. See caches below
'options' => [
Expand Down Expand Up @@ -551,7 +554,7 @@ return [
// default file system
'default' => [
'adaptor' => 'default', // Adaptor name from adaptor configuration
'cache' => 'PSR6\Cache\Service', // Cache name from adaptor configuration
'cache' => 'default', // Cache name from adaptor configuration
'plugins' => [] // User defined plugins to be injected into the file system
],

Expand Down Expand Up @@ -586,9 +589,9 @@ return [
'flysystem' => [
'fileSystems' => [
// Array Keys are the file systems identifiers
'local' => [
'adaptor' => 'adaptor_one', // Adaptor name from adaptor configuration
'cache' => 'PSR6\Cache\Service', // Cache name from adaptor configuration
'myFileSystemName' => [
'adaptor' => 'default', // Adaptor name from adaptor configuration
'cache' => 'default', // Cache name from adaptor configuration
'plugins' => [] // User defined plugins to be injected into the file system
],
],
Expand All @@ -607,7 +610,7 @@ Example configs for supported adaptors
return [
'flysystem' => [
'adaptors' => [
'default' => [
'myAdaptorName' => [
'type' => 'null',
'options' => [], #No options available
],
Expand Down

0 comments on commit 6cff37b

Please sign in to comment.