chiarillomax/yandex-translator-bundle

Yandex translator integration in Symfony2

V1.2 2016-04-20 13:25 UTC

This package is not auto-updated.

Last update: 2024-05-22 21:49:14 UTC


README

SensioLabsInsight Scrutinizer Code Quality Build Status

Use Yandex translator service in your Symfony Project

Installation

Install the bundle:

composer require chiarillomax/yandex-translator-bundle

Register the bundle in app/AppKernel.php:

<?php
// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new \Yandex\TranslatorBundle\YandexTranslatorBundle()
    );
}

Usage

//use Yandex\TranslatorBundle\Model\Key
$key = new Key();
$key->setValue('YourKey');

$request = $this->get('yandex.translator')->createRequest()
     ->setKey($key->getValue())
     ->setText('Hello Max')
     ->setFrom('en')
     ->setTo('it')
     ->send();

$text = $request->getText(); //Ciao Max

Test

phpunit