-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from froschdesign/hotfix/docs/missing-installa…
…tion-page Adds missing installation page and updates introduction
- Loading branch information
Showing
4 changed files
with
36 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
show_file_content: true | ||
--- | ||
|
||
<!-- markdownlint-disable MD001 MD041 --> | ||
## Cache Implementation Required | ||
<!-- markdownlint-restore --> | ||
|
||
To use this component, a PSR-6 `CacheItemPoolInterface` implementation is required. | ||
[laminas-cache](https://docs.laminas.dev/laminas-cache/) provides the PSR-6 implementations, install it and choose one of the cache adapters. | ||
|
||
### Install laminas-cache and a Cache Adapter | ||
|
||
Install laminas-cache via [Composer](https://getcomposer.org/): | ||
|
||
```bash | ||
$ composer require laminas/laminas-cache | ||
``` | ||
|
||
laminas-cache is shipped without a specific cache adapter to allow free choice of storage backends and their dependencies. | ||
For example, install the [laminas-cache `Filesystem` adapter](https://docs.laminas.dev/laminas-cache/v3/storage/adapter/#filesystem-adapter): | ||
|
||
```bash | ||
$ composer require laminas/laminas-cache-storage-adapter-filesystem | ||
``` | ||
|
||
### Read More in the laminas-cache Documentation | ||
|
||
- [PSR-6](https://docs.laminas.dev/laminas-cache/v3/psr6/) | ||
- [Cache Adapters](https://docs.laminas.dev/laminas-cache/v3/storage/adapter/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters