forked from GwendolenLynch/msgphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
51 lines (48 loc) · 1.64 KB
/
mkdocs.yml
File metadata and controls
51 lines (48 loc) · 1.64 KB
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
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
- Infrastructure:
- UUID: infrastructure/uuid.md
- Doctrine:
- Collections: infrastructure/doctrine-collections.md
- DBAL: infrastructure/doctrine-dbal.md
- ORM: infrastructure/doctrine-orm.md
- Symfony:
- Console: infrastructure/symfony-console.md
- Domain layers:
- Architecture: domain/architecture.md
- User domain: domain/user.md
- EAV domain: domain/eav.md
- Symfony bundles:
- Architecture: symfony-bundle/architecture.md
- User bundle: symfony-bundle/user.md
- EAV bundle: symfony-bundle/eav.md