zalas/param-converter-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

zalas/param-converter-bundle

最新稳定版本:v1.1.0

Composer 安装命令:

composer require zalas/param-converter-bundle

包简介

Bundle that provides additional param converters for Symfony

README 文档

README

This bundle provides additional param converters for Symfony.

Scrutinizer Code Quality Build Status

Since argument resolvers and service arguments were introduced in Symfony 3.3, the param converter provided by this bundle is redundant. We can achieve pretty much the same by injecting services directly to controller actions.

Installation

This bundle requires:

  • PHP ^7.0
  • sensio/framework-extra-bundle ~3.0

The easiest way to install it is to use Composer:

$ composer require zalas/param-converter-bundle:^1.0

Service Param Converter

The service param converter calls a configured service to convert a request attribute to an object.

Options:

  • service - a service id
  • method - a method name to be called on the service
  • arguments - list of request attributes to be passed as method call arguments

Example:

<?php

namespace AppBundle\Controller;

use AppBundle\Site\Visitor;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;

class DemoController
{
    /**
     * @Route("/hello/{name}")
     * @ParamConverter(
     *     "visitor",
     *     converter="service",
     *     options={
     *         "service": "visitor_repository",
     *         "method": "findByName",
     *         "arguments": {"name"}
     *     }
     * )
     */
    public function indexAction(Visitor $visitor)
    {
        return new Response('Hello '.$visitor->getName());
    }
}

统计信息

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

GitHub 信息

  • Stars: 16
  • Watchers: 4
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-19