Skip to content

Commit ced6599

Browse files
committed
Importing README
1 parent 00c8e51 commit ced6599

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Basic Doctrine ORM tutorial
2+
3+
This tutorial will introduce you to using Doctrine ORM.
4+
5+
Specifically, following sections will be covered:
6+
7+
1. Installation
8+
2. Basic concepts:
9+
a. Entities
10+
b. ORM components
11+
c. Entity states
12+
d. Transactions
13+
3. Creating an entity
14+
4. Saving and loading an entity
15+
5. API interactions with entities
16+
6. Association mapping
17+
7. Lazy loading
18+
19+
## The domain
20+
21+
The logic inside this domain will represent a simple authentication
22+
layer, as well as a simple blog-post/blog-post commenting platform.
23+
24+
See the [feature](feature) directory for requirements.
25+
26+
## Installation
27+
28+
First, [install composer](https://getcomposer.org/download/).
29+
30+
After that, you can run:
31+
32+
```sh
33+
composer require doctrine/orm
34+
```

0 commit comments

Comments
 (0)