chiarillomax/yandex-translator-bundle
Use Yandex translator service in your Symfony Project
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()
);
}
//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
phpunit
How can I help you explore Laravel packages today?