Download the PHP package portospire/suitecrmclient without Composer
On this page you can find all versions of the php package portospire/suitecrmclient. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download portospire/suitecrmclient
More information about portospire/suitecrmclient
Files in portospire/suitecrmclient
Package suitecrmclient
Short Description A free client library for use with SuiteCRM to abstract the various API usage to enable easier integrations. Provided by PortoSpire
License LGPL-3.0-or-later
Homepage https://portospire.github.io/suiteCRMClient/
Informations about the package suitecrmclient
Client library for use with SuiteCRM
A free (LGPL3) client library for use with SuiteCRM to abstract various API usage to enable easier integrations.
Table of Contents
1. Introduction
2. Setup
3. Usage
3.1. Mezzio
3.2. Laminas MVC
3.3. Standalone
Introduction
This package provides a SuiteCRM client to abstract API calls and form submissions to provide and receive data from SuiteCRM instances. It makes use of Person Form campaigns and both the V8 and rest APIs as needed.
Setup
Add to your project's composer.json
Usage
This package is built to support Laminas Mezzio and Laminas MVC as well as be available as a stand alone library.
An example to get a list of Web campaigns from a SuiteCRM instance:
An example to submit a lead into a web-to-lead form in a SuiteCRM instance: (You can extend the provided models (Model/WebToLead, etc) if you have custom fields)
Mezzio
Add the ConfigProvider class to the config aggregator (typically found in config/config.php)
Then use the client in your handlers/middleware as needed for your use cases.
Laminas MVC
There should be no additional steps beyond adding to your project's composer.json required to begin using the library with Laminas MVC.
Standalone
There should be no additional steps beyond adding to your project's composer.json required to begin using the library.