flexix/mapper-bundle

Flexix 实体映射器

安装次数: 53

依赖者: 1

建议者: 0

安全性: 0

星标: 0

关注者: 3

分支: 1

开放问题: 0

类型:symfony-bundle

dev-master 2017-12-14 11:12 UTC

This package is not auto-updated.

Last update: 2024-09-29 02:29:00 UTC


README

由 Mariusz Piela mariusz.piela@tmsolution.pl

安装

要安装此包,请在您的项目 composer.json 文件中添加

//composer require

"flexix/mapper-bundle": "dev-master"

。稍后,在应用的内核中启用您的包

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Flexix\MapperBundle\FlexixMapperBundle()
    );
}