apache / apache-ignite-client
PHP Client for Apache Ignite
Requires
- php: >=7.2.0
- ext-mbstring: *
- brick/math: ^0.7
- php-ds/php-ds: ^1.2
Requires (Dev)
- phpunit/phpunit: ^7.3.1
This package is not auto-updated.
Last update: 2024-05-09 08:15:55 UTC
README
Installation
The client requires PHP version 7.2 or higher (http://php.net/manual/en/install.php) and Composer Dependency Manager (https://getcomposer.org/download/).
The client additionally requires PHP Multibyte String extension. Depending on you PHP configuration you may need to additionally install/configure it (http://php.net/manual/en/mbstring.installation.php)
Installation from the PHP Package Repository
Run from your application root
composer require apache/apache-ignite-client
To use the client in your application, include vendor/autoload.php
file, generated by Composer, to your source code, eg.
require_once __DIR__ . '/vendor/autoload.php';
Installation from Sources
- Download Ignite sources to
local_ignite_path
- Go to
local_ignite_path/modules/platforms/php
folder - Execute
composer install --no-dev
command
cd local_ignite_path/modules/platforms/php
composer install --no-dev
To use the client in your application, include vendor/autoload.php
file, generated by Composer, to your source code, eg.
require_once "<local_ignite_path>/vendor/autoload.php";
For more information, see Apache Ignite PHP Thin Client documentation.