PHPackages                             codefuze/lisk-composer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. codefuze/lisk-composer

ActiveLibrary[API Development](/categories/api)

codefuze/lisk-composer
======================

Lisk Composer is a Lisk API package for use in Laravel and PHP composer projects

5.5.4(8y ago)214MITPHP

Since Jan 16Pushed 8y ago2 watchersCompare

[ Source](https://github.com/codefuze/lisk-composer)[ Packagist](https://packagist.org/packages/codefuze/lisk-composer)[ Docs](https://github.com/codefuze/lisk-composer)[ RSS](/packages/codefuze-lisk-composer/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

Lisk Composer
=============

[](#lisk-composer)

Lisk Composer is a Lisk API package for use in Laravel and PHP composer projects using Guzzle.

- Simple yet powerful Lisk API wrapper for PHP
- Laravel integration with a service provider and config options
- Can connect to local, custom, or official nodes
- Easy to understand with documentation

### Requirements

[](#requirements)

- **PHP** &gt;= 7.0.0
- **cURL** PHP Extension
- [Composer](https://getcomposer.org/)
- (Optional) **Laravel** &gt;= 5.5

### Dependencies

[](#dependencies)

- [Guzzle](http://guzzlephp.org/) - an extensible PHP HTTP client.

### Installation

[](#installation)

After you have met the above requirements you can install Lisk Composer into your project using the following command in you project root:

```
$ composer require "codefuze/lisk-composer:5.5.*"
```

> Laravel &gt;= 5.5 supports auto-discovery does **not** require you to add service proiders or aliases &gt; to your configs, however if you are having issues you can add them to your **config/app.php** file

```
'providers' => [
.....
    Codefuze\Lisk\LiskServiceProvider::class,
],
'aliases' => [
.....
    'Lisk' => Codefuze\Lisk\Lisk::class,
```

### Using

[](#using)

You can set the node to connect to when creating an instance of Lisk. If you do not include a connection then a random mainnet node will be used for each instance. If using Laravel you can publish the config file and change the default values so they will be used on any instance without providing the connection.

To publish the config file use the following command to publish to config/lisk.php

```
$ php artisan vendor:publish
```

##### Examples

[](#examples)

Define a connection:

```
use Codefuze\Lisk\Lisk;
.....
$lisk = new Lisk('node01.lisk.io', 443, true);
$response = $lisk->accounts->get('11689559667869482649L');
var_dump($response);
```

No connection provided (will use random official node or check config file):

```
use Codefuze\Lisk\Lisk;
.....
$lisk = new Lisk();
$response = $lisk->accounts->get('11689559667869482649L');
var_dump($response);
```

Testnet:

```
use Codefuze\Lisk\Lisk;
.....
$lisk = new Lisk('testnet.lisk.io', 443, true);
$response = $lisk->accounts->get('11689559667869482649L');
var_dump($response);
```

### Contributions

[](#contributions)

Want to contribute? **Great!**Feel free to fork, post issues, or submit PRs.

**Consider donating some Lisk to:**11689559667869482649L

### Todos

[](#todos)

- Complete all API endpoints
- Complete documentation
- Unit testing
- Artisan commands

License
-------

[](#license)

MIT License

Copyright (c) 2018 codefuze

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

3085d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1830837?v=4)[skulls](/maintainers/skulls)[@skulls](https://github.com/skulls)

---

Top Contributors

[![codefuze](https://avatars.githubusercontent.com/u/1295807?v=4)](https://github.com/codefuze "codefuze (8 commits)")

---

Tags

cryptocurrencylaravelliskphpphplaravelcryptocurrencylisk

### Embed Badge

![Health badge](/badges/codefuze-lisk-composer/health.svg)

```
[![Health](https://phpackages.com/badges/codefuze-lisk-composer/health.svg)](https://phpackages.com/packages/codefuze-lisk-composer)
```

###  Alternatives

[simplestats-io/laravel-client

Analytics for Laravel. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant, ad-blocker proof.

5019.3k](/packages/simplestats-io-laravel-client)[smodav/mpesa

M-Pesa API implementation

16167.1k1](/packages/smodav-mpesa)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
