Skip to content

Commit fa77872

Browse files
author
Kirill Nesmeyanov
committed
Improve readme
1 parent d7cb000 commit fa77872

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,37 @@
1616

1717
The best PHP mapper you've ever seen =)
1818

19-
1. You can see some [examples here](/example)
20-
2. Full documentation in progress...
19+
You can see some [examples here](/example):
20+
21+
- [01.normalization](/example/01.normalization)
22+
- [01.object-normalization](/example/01.normalization/01.object-normalization.php)
23+
- [02.date-normalization](/example/01.normalization/02.date-normalization.php)
24+
- [03.date-format-normalization](/example/01.normalization/03.date-format-normalization.php)
25+
- [04.untyped-object-normalization](/example/01.normalization/04.untyped-object-normalization.php)
26+
- [05.typed-object-normalization](/example/01.normalization/05.typed-object-normalization.php)
27+
- [06.inherited-types-normalization](/example/01.normalization/06.inherited-types-normalization.php)
28+
- [07.collection-types-normalization](/example/01.normalization/07.collection-types-normalization.php)
29+
- [08.object-output-normalization](/example/01.normalization/08.object-output-normalization.php)
30+
- [02.errors](/example/02.errors)
31+
- [01.errors-purification](/example/02.errors/01.errors-purification.php)
32+
- [02.custom-type-printer](/example/02.errors/02.custom-type-printer.php)
33+
- [03.extended-type-printer](/example/02.errors/03.extended-type-printer.php)
34+
- [04.custom-path-printer](/example/02.errors/04.custom-path-printer.php)
35+
- [05.custom-value-printer](/example/02.errors/05.custom-value-printer.php)
36+
- [03.types](/example/03.types)
37+
- [01.type-platforms](/example/03.types/01.type-platforms.php)
38+
- [02.custom-type](/example/03.types/02.custom-type.php)
39+
- [03.custom-type-template-arguments](/example/03.types/03.custom-type-template-arguments.php)
40+
- [04.custom-platform](/example/03.types/04.custom-platform.php)
41+
- [04.mapping](/example/04.mapping)
42+
- [01.reflection-mapping](/example/04.mapping/01.reflection-mapping.php)
43+
- [02.attribute-mapping](/example/04.mapping/02.attribute-mapping.php)
44+
- [03.driver-inheritance-mapping](/example/04.mapping/03.driver-inheritance-mapping.php)
45+
- [04.phpdoc-mapping](/example/04.mapping/04.phpdoc-mapping.php)
46+
- [05.phpdoc-custom-tags-mapping](/example/04.mapping/05.phpdoc-custom-tags-mapping.php)
47+
- [06.cache](/example/04.mapping/06.cache.php)
48+
49+
> Full documentation in progress...
2150
2251
## Installation
2352

example/01.normalization/05.typed-object-normalization.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
declare(strict_types=1);
44

55
use TypeLang\Mapper\Mapper;
6-
use TypeLang\Mapper\Mapping\Driver\AttributeDriver;
76
use TypeLang\Mapper\Mapping\MapProperty;
8-
use TypeLang\Mapper\Platform\StandardPlatform;
97

108
require __DIR__ . '/../../vendor/autoload.php';
119

0 commit comments

Comments
 (0)