, (*1)
An official iGap PHP client, (*2)
Installation
The recommended way to install iGap-PHP-Client is through
Composer., (*3)
# Install Composer
curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version of iGap-PHP-Client:, (*4)
composer require rooyekhat/igap-php-client
After installing, you need to require Composer's autoloader:, (*5)
require 'vendor/autoload.php';
You can then later update iGap-PHP-Client using composer:, (*6)
bash
composer update
, (*7)
protobuf module is required , follow https://github.com/google/protobuf/tree/master/php, (*8)
Quickstart example
Once installed, you can use the following code to send some requests:, (*9)
$loop = React\EventLoop\Factory::create();
$connector = new React\Socket\Connector($loop, [
'dns' => '8.8.8.8',
'timeout' => 10
]);
iGap\Api::init($loop, $connector);
$userRegister = new \Proto\UserRegister();
$userRegister->setCountryCode('IR');
$userRegister->setPhoneNumber('912xxxxxxx');
iGap\Api::getInstance()->invoke(
iGap\Api::ACTION_USER_REGISTER,
$userRegister
);
$loop->run();
See also the examples., (*10)
API documentation
iGap API manuals: https://github.com/RooyeKhat-Media/iGap-API, (*11)
Protocol buffers files : https://github.com/RooyeKhat-Media/iGap-API/tree/master/app/assets/proto, (*12)
Partner
RooyeKhat Media was founded in 2015 aiming to create communicative and informative platforms supported by Internet and network on the basis of modern technology. We focus on the fields of designing, programming, supporting communicative and media software on mobile phones and tablets., (*13)
Licence
iGap-PHP-Client is released under the GNU Lesser General Public License, (*14)
, (*15)