PHPackages                             diolcos/odoo-api-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. diolcos/odoo-api-client

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

diolcos/odoo-api-client
=======================

A simple XML-RPC wrapper library for Odoo. For the time being, only a very limited set of Odoo API calls is exposed.

v0.1.2(6y ago)08GPL-3.0-onlyPHPPHP &gt;=7.0.0CI failing

Since Feb 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/diolcos/odoo-api-client)[ Packagist](https://packagist.org/packages/diolcos/odoo-api-client)[ RSS](/packages/diolcos-odoo-api-client/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (3)Versions (4)Used By (0)

Odoo API Client
===============

[](#odoo-api-client)

A simple XML-RPC wrapper library for Odoo. For the time being, only a very limited set of Odoo API calls is exposed.

Installation via Composer
-------------------------

[](#installation-via-composer)

The recommended method to install *Odoo API Client* is through [Composer](http://getcomposer.org).

1. Add `diolcos/odoo-api-client` as a dependency in your project's `composer.json`:

    ```
        {
            "require": {
                "diolcos/odoo-api-client": "~0.1"
            }
        }
    ```
2. Download and install Composer:

    ```
        curl -s http://getcomposer.org/installer | php
    ```
3. Install your dependencies:

    ```
        php composer.phar install --no-dev
    ```
4. Require Composer's autoloader

    Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:

    ```
