sahithvibudhi / php-lazal
A PHP Lazal Client
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sahithvibudhi/php-lazal
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: 5.2.*
This package is not auto-updated.
Last update: 2025-12-25 17:19:38 UTC
README
This is official Lazal PHP client.
Instation:
composer require sahithvibudhi/php-lazal
How to Use:
Making a connection to Lazal Server
$client = new Lazal\Client(['host'=>'127.0.0.1', 'port' => 5555]);
Writing data
$client->set('key1', 'value');
Fetching data
$value = $client->get('key1');
Deleting data
$client->delete('key1');