zmog/php-lingea

Library to help you to manage your Lingea api requests.

Installs: 176

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/zmog/php-lingea

2.1.0 2025-10-02 09:24 UTC

This package is auto-updated.

Last update: 2025-10-02 10:14:21 UTC


README

This repo help you to manage your Lingea api requests.

GitHub release PHP Version

Installation

composer require zmog/php-lingea

Usage

<?php

require_once __DIR__ . '/vendor/autoload.php';

$api_key = 'you_api_key';

$TranslationApi = new \Zmog\Libs\Lingea\TranslationApi($api_key);
$text = 'Hello, my name is Mathieu.';

$translated_text = $TranslationApi->translate($text,\Zmog\Libs\Lingea\TranslationLanguage\ISO_639_2b::fromCode('eng'),\Zmog\Libs\Lingea\TranslationLanguage\ISO_639_1::fromCode('cs'),\Zmog\Libs\Lingea\TranslationFormat\Plain::instance());
?>

Demo scripts :

php test/language.php "my_api_key"
php test/translate.php "my_api_key"