-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
mkdocs.yml
86 lines (86 loc) · 3.46 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
docs_dir: docs/book
site_dir: docs/html
nav:
- Home: index.md
- v4:
- Installation: v4/installation.md
- Storage:
- Adapters: v4/storage/adapter.md
- Capabilities: v4/storage/capabilities.md
- Plugins: v4/storage/plugin.md
- "Cache Patterns":
- Introduction: v4/pattern/intro.md
- CallbackCache: v4/pattern/callback-cache.md
- ObjectCache: v4/pattern/object-cache.md
- OutputCache: v4/pattern/output-cache.md
- CaptureCache: v4/pattern/capture-cache.md
- "Standards Support":
- PSR-6: v4/psr6.md
- PSR-16: v4/psr16.md
- "Application Integration":
- "Usage in a laminas-mvc Application": v4/application-integration/usage-in-a-laminas-mvc-application.md
- "Migration Guide":
- "Migration to Version 4.0": v4/migration/to-version-4.md
- v3:
- Installation: v3/installation.md
- Storage:
- Adapters: v3/storage/adapter.md
- Capabilities: v3/storage/capabilities.md
- Plugins: v3/storage/plugin.md
- "Cache Patterns":
- Introduction: v3/pattern/intro.md
- CallbackCache: v3/pattern/callback-cache.md
- ObjectCache: v3/pattern/object-cache.md
- OutputCache: v3/pattern/output-cache.md
- CaptureCache: v3/pattern/capture-cache.md
- "Standards Support":
- PSR-6: v3/psr6.md
- PSR-16: v3/psr16.md
- "Application Integration":
- "Usage in a laminas-mvc Application": v3/application-integration/usage-in-a-laminas-mvc-application.md
- "Migration Guide":
- "Migration to Version 3.0": v3/migration/to-version-3.md
- v2:
- Installation: v2/installation.md
- Storage:
- Adapters: v2/storage/adapter.md
- Capabilities: v2/storage/capabilities.md
- Plugins: v2/storage/plugin.md
- "Cache Patterns":
- Introduction: v2/pattern/intro.md
- CallbackCache: v2/pattern/callback-cache.md
- ObjectCache: v2/pattern/object-cache.md
- OutputCache: v2/pattern/output-cache.md
- CaptureCache: v2/pattern/capture-cache.md
- "Standards Support":
- PSR-6: v2/psr6.md
- PSR-16: v2/psr16.md
site_name: laminas-cache
site_description: 'Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output.'
repo_url: 'https://github.com/laminas/laminas-cache'
extra:
project: Components
installation:
config_provider_class: 'Laminas\Cache\ConfigProvider'
module_class: 'Laminas\Cache\Module'
current_version: v4
versions:
- v4
- v3
- v2
show_special_homepage: true
plugins:
- search
- redirects:
redirect_maps:
installation.md: v4/installation.md
storage/adapter.md: v4/storage/adapter.md
storage/capabilities.md: v4/storage/capabilities.md
storage/plugin.md: v4/storage/plugin.md
pattern/intro.md: v4/pattern/intro.md
pattern/callback-cache.md: v4/pattern/callback-cache.md
pattern/object-cache.md: v4/pattern/object-cache.md
pattern/output-cache.md: v4/pattern/output-cache.md
pattern/capture-cache.md: v4/pattern/capture-cache.md
psr6.md: v4/psr6.md
psr16.md: v4/psr16.md