承接 pluess/doctrine-trx-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

pluess/doctrine-trx-bundle

Composer 安装命令:

composer require pluess/doctrine-trx-bundle

包简介

This bundle provides container managed transactoins in controller actions.

README 文档

README

Adds container managed transactions for doctrine base persistence in controller actions.

#Usage

All you need to do to get an action covered by a transaction, is to add the annotation:

<?php

use Pluess\DoctrineTrxBundle\Annotation\DoctrineTrx as ContainerTransaction;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

use Symfony\Component\HttpFoundation\Request;

/**
 * @Route("/my_route")
 */
class MyController extends Controller
{

    /**
     * @Route("/do-something", name = "do_something")
     * @ContainerTransaction
     */
    public function applyAction(Request $request)
    {
    	$em = $this->getDoctrine()->getManager()
    	
    	// Do whatever you want to do via doctrine.
    	// The annotation makes sure it's properly covered by a transaction.
    }
    
}

#Installation

  1. Add this to your composer.json and do a composer update:

    "pluess/doctrine-trx-bundle": "dev-master"
    
  2. Add this line to your AppKernel.php:

    new Pluess\DoctrineTrxBundle\PluessDoctrineTrxBundle()
    

#Credits

There are a lot of people I'm learning from. The main learnings for this bundle are coming from

#Support Feel free to open issues if you have problems with the bundle.

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 6
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-02-16