palpalani / sticky-php
Sticky Subscription Commerce Platform PHP Client
0.3.1
2024-07-06 03:45 UTC
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^7.5
Requires (Dev)
- fakerphp/faker: ^1.20
- laravel/pint: ^1.0
- mockery/mockery: ^1.5
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5|^10.0|^11.0
This package is auto-updated.
Last update: 2024-10-15 06:56:01 UTC
README
Installation
To install, use composer:
composer require palpalani/sticky-php
Documentation
https://developer-prod.sticky.io/?version=latest
Example Usage
$limelightCRM = new LimeLightCRM([ 'base_url' => 'your_url', 'username' => 'your_username', 'password' => 'your_password' ]); $limelightCRM->transaction()->newOrder([ 'firstName' => 'John', 'lastName' => 'Doe', 'email' => 'jdoe@gmail.com' ]); $limelightCRM->transaction()->newOrderWithProspect([ 'firstName' => 'John', 'lastName' => 'Doe', 'email' => 'jdoe@gmail.com' ]); $limelightCRM->membership()->findActiveCampaign(); $limelightCRM->membership()->viewCampaign([ 'campaign_id' => 1 ]);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.