maillotf/papercut-bridge-bundle

There is no license information available for the latest version (1.0.1) of this package.

A Papercut bundle for Symfony

1.0.1 2020-09-30 16:24 UTC

This package is auto-updated.

Last update: 2024-05-08 20:03:24 UTC


README

Software license Latest stable Packagist PHP Version Support

Symfony bundle for Papercut XML-RPC client which is base on token authentication

Required configuration

Modify framework.yaml

papercut:
    authentication:
        protocol: "http"
        host: "127.0.0.1"
        port: "80"
        path: "/rpc/api/xmlrpc"
        token: "TOKEN"
papercut:
    authentication:
        path: "http://URL/rpc/api/xmlrpc"
        token: "TOKEN"

Modify services.yaml

services:
    MaillotF\Papercut\PapercutBridgeBundle\Service\PapercutService: '@papercut.service'

##Package instalation with composer

$ composer require maillotf/papercut-bridge-bundle

Use in controller:

<?php
//...
use MaillotF\Papercut\PapercutBridgeBundle\Service\PapercutService;

class exampleController extends AbstractController
{
	/**
	 * Example
	 * 
	 * @Route("example", name="example", methods={"GET"})
	 * 
	 */
	public function test(PapercutService $ps)
	{
		$user = $ps->user->getUser('4665');
		
		return ($this->json($user->getEmail()));
	}

}