Installation

The recommended way to install Tradukoj connector is through Composer.

Download the composer binary:

wget http://getcomposer.org/composer.phar
# or
curl -O http://getcomposer.org/composer.phar

Now, install Tradukoj connector requiring it into composer.json:

{
   ...
    "require": {
        ...
        "jlaso/tradukoj-connector": "dev-master"
        ...
    }
}

And now you can launch composer update in order to include the connector in your development.

Once added the autoloader you will have access to the library:

<?php

require 'vendor/autoload.php';

Latest Stable Version Latest Unstable Version


Next section: Extending Tradukoj connector.