-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmkdocs.yml
57 lines (54 loc) · 2.06 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
site_name: MsgPHP Documentation
site_description: Message based domain layers. Shipped with industry standard infrastructure.
repo_url: https://github.com/msgphp/msgphp
edit_uri: blob/master/docs/
site_dir: var/docs/build/
theme:
name: material
custom_dir: docs/.theme
extra_css: [style.css]
markdown_extensions:
- codehilite
pages:
- Home: index.md
- Code Conventions: code-conventions.md
- Domain-Driven-Design:
- Identifiers: ddd/identifiers.md
- Identities: ddd/identities.md
- Identity Mapping: ddd/identity-mapping.md
- Collections: ddd/collections.md
- Factories:
- Object Factory: ddd/factory/object.md
- Entity Aware Factory: ddd/factory/entity-aware.md
- Static Factory: ddd/factory/static.md
- Repositories: ddd/repositories.md
- Entities: ddd/entities.md
- Event-Sourcing:
- Events: event-sourcing/events.md
- Event Handlers: event-sourcing/event-handlers.md
- Message Driven:
- Message Bus: message-driven/message-bus.md
- Message Dispatcher: message-driven/message-dispatcher.md
- CQRS: message-driven/cqrs.md
- Projection:
- Models: projection/models.md
- Documents: projection/documents.md
- Document Transformers: projection/document-transformers.md
- Type Registry: projection/type-registry.md
- Repositories: projection/repositories.md
- Synchronization: projection/synchronization.md
- Infrastructure:
- API Platform: infrastructure/api-platform.md
- Doctrine Collections: infrastructure/doctrine-collections.md
- Doctrine DBAL: infrastructure/doctrine-dbal.md
- Doctrine ORM: infrastructure/doctrine-orm.md
- Elasticsearch: infrastructure/elasticsearch.md
- PSR Container: infrastructure/psr-container.md
- Symfony Console: infrastructure/symfony-console.md
- UUID: infrastructure/uuid.md
- Cookbook:
- Bundle Installation: cookbook/bundle-installation.md
- Reference:
- Domain Identifiers: reference/identifiers.md
- Domain Entities: reference/entities.md
- Doctrine Identifier Types: reference/doctrine-identifier-types.md