joomtriggers / ideamart-php
Flexible Ideamart PHP API
Installs: 50
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/joomtriggers/ideamart-php
Requires
- php: >=5.6.0
- ext-json: *
Requires (Dev)
This package is not auto-updated.
Last update: 2025-10-18 08:42:08 UTC
README
- Requires PHP 7.0+ to function
- Can be said as a best PHP library for Ideamart
- Simplifies the process of Getting IdeaPro apps running in a blaze.
Installation
Use Composer to install. Does not require composer for functioning.
$ composer require joomtriggers\ideamart-php
Sample PHP Code
use Joomtriggers\Ideamart\Handler; $handler = new Handler(); //sending SMS $handler->sms() ->setApplication("APP_000000") ->setSecret("SECRET FROM DIALOG") ->setMessage("Message") ->addSubscriber('tel:077xxxxxxx') ->send()); //receiving SMS $handler->sms() ->receive() //receive will be automatically handled if not passed, should be passed as a StdClass Object ->getApplication(); $handler->sms() ->receive() //receive will be automatically handled if not passed, should be passed as a StdClass Object ->getSender();