Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 380 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 380 Bytes

Doctrine ORM Module

Add Doctrine ORM to your project

[
    ...,
    new DoctirneModule([
        "orm" =>  [
            "connection" => [
                'driver' => 'pdo_sqlite',
                'path' => __DIR__ . '/_files',
            ],
        ],
        "entities" => [__DIR__ . "/src"],
        "development" => true,
        "cache" => "/tmp",
    ]),
]