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.
Requires
- php: >=7.0.0
- darkaonline/ripcord: ^0.1.7
- tbondois/odoo-ripcord: ^1.6
Requires (Dev)
- phpunit/phpunit: ^6.5.14
This package is auto-updated.
Last update: 2025-03-12 21:09:58 UTC
README
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
The recommended method to install Odoo API Client is through Composer.
-
Add
diolcos/odoo-api-client
as a dependency in your project'scomposer.json
:{ "require": { "diolcos/odoo-api-client": "~0.1" } }
-
Download and install Composer:
curl -s http://getcomposer.org/installer | php
-
Install your dependencies:
php composer.phar install --no-dev
-
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:
<?php use OdooApiClient\XmlRpcApiWrapper as OdooXmlRpcApiWrapper; require_once 'vendor/autoload.php';
You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at getcomposer.org.
You'll notice that the installation command specified --no-dev
. This prevents Composer from installing the various testing and development dependencies. For average users, there is no need to install the test suite. If you wish to contribute to development, just omit the --no-dev
flag to be able to run tests.
Example
<?php use OdooApiClient\XmlRpcApiWrapper as OdooXmlRpcApiWrapper; use OdooApiClient\Entities\Contacts as OdooContacts; require_once 'vendor/autoload.php'; $odooApiWrapper = new OdooXmlRpcApiWrapper([ 'url' => "http://odoo.my.site", 'db' => "my_odoo_db", 'username' => "myuser@example.com", 'password' => "example_password", ]); $odooContacts = new OdooContacts($odooApiWrapper); $contacts = $odooContacts->list(); print_r($contacts);