Download the PHP package josespinal/odoo-rpc without Composer
On this page you can find all versions of the php package josespinal/odoo-rpc. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download josespinal/odoo-rpc
More information about josespinal/odoo-rpc
Files in josespinal/odoo-rpc
Package odoo-rpc
Short Description PHP Odoo RPC connector with JSON-RPC and XML-RPC support, prepared for Laravel integration
License MIT
Homepage https://github.com/josespinal/odoo-rpc
Informations about the package odoo-rpc
Access Odoo via JSON-RPC and XML-RPC
Note: This package is a fork of obuchmann/odoo-jsonrpc with several improvements:
- Added XML-RPC support alongside JSON-RPC
- Enhanced Laravel integration with proper service provider
- Added Laravel Collection support for search results
- Improved type safety and error handling
- Added convenient methods like
first()
for better developer experience- Better PHP 8.0+ support
Connect to odoo via the json-rpc or xml-rpc api. If you are in a laravel project, this package registers a provider. But laravel is not required for this package.
Installation
You can install the package via composer:
The service provider will automatically register itself if you are in a laravel project.
You can publish the config file with:
Usage
Protocol Selection
This package supports both JSON-RPC and XML-RPC protocols. You can specify which protocol to use in your configuration:
Basic Usage
Laravel Usage
Laravel Models
Laravel Models are implemented with Attributes
Casts
You can define a cast for your models. This is useful if you want to convert odoo fields to a specific type. There are some predefined casts for date and datetime fields.
Casts are global and can be registered in the Odoo class.
For more examples take a look at the tests directory.