Skip to content

Commit 48867f1

Browse files
committed
add persistence layer section in the docs
1 parent 132ac06 commit 48867f1

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

docs/framework/_sidebar.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* [Running Application](/framework/running-application.md "Running guide for Antidot Framework")
55
* [Routing](/framework/routing.md)
66
* [Templating](/framework/templating.md)
7+
* [Persistence Layer](/framework/persitence.md)
78
* [Dependency Injection](/framework/dependency-injection.md)
89
* [Logger](/framework/logger.md)
910
* [Event System](/framework/event-system.md)

docs/framework/persitence.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Persistence Layer
2+
3+
Antidot Framework doesn't have any persistence layer defined, it left the decision o where and how you want to store and consume your data.
4+
Anyway, we provide some adapters to use out of the box for the most popular persistence libraries.
5+
6+
## Doctrine DBAL Adapter
7+
8+
Uses Doctrine DBAL abstraction layer for database connections.
9+
10+
> [Doctrine DBAL Adapter](https://github.com/antidot-framework/dbal-adapter)
11+
12+
Coming soon
13+
14+
## Doctrine ORM Adapter
15+
16+
Uses Doctrine ORM complete stack.
17+
18+
> [Doctrine DBAL Adapter](https://github.com/antidot-framework/doctrine)
19+
20+
Coming soon

0 commit comments

Comments
 (0)