wdalmut/frankie-doctrine-module

Add Doctrine ORM to your project

dev-master 2017-07-18 18:53 UTC

This package is not auto-updated.

Last update: 2024-04-28 00:53:25 UTC


README

Add Doctrine ORM to your project

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