PHPackages                             thunderlane/laravel-kitaboo-client - 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. thunderlane/laravel-kitaboo-client

ActiveLibrary

thunderlane/laravel-kitaboo-client
==================================

Kitaboo library for Laravel

v0.1-alpha(6y ago)01MITPHPPHP &gt;=7.1CI failing

Since Sep 15Pushed 6y ago1 watchersCompare

[ Source](https://github.com/simbatlk/laravel-kitaboo-client)[ Packagist](https://packagist.org/packages/thunderlane/laravel-kitaboo-client)[ RSS](/packages/thunderlane-laravel-kitaboo-client/feed)WikiDiscussions master Synced 2mo ago

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

[![Build Status](https://camo.githubusercontent.com/b394a19d2f4ed774a0796e764b0ad3089811ab9a53e14833e5ca4845e1a68f98/68747470733a2f2f7472617669732d63692e6f72672f73696d6261746c6b2f6c61726176656c2d6b697461626f6f2d636c69656e742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/simbatlk/laravel-kitaboo-client.svg?branch=master)[![Total Downloads](https://camo.githubusercontent.com/5159801a3722d600ff1edb0251113ed2733c0f108947f0484f5d461ea72dc2b6/68747470733a2f2f706f7365722e707567782e6f72672f7468756e6465726c616e652f6c61726176656c2d6b697461626f6f2d636c69656e742f646f776e6c6f616473)](https://packagist.org/packages/thunderlane/laravel-kitaboo-client)[![Latest Stable Version](https://camo.githubusercontent.com/36a68d93cf996614ddb2043d7478dbeeb6335512f4ca523e5e6cb792ca42f936/68747470733a2f2f706f7365722e707567782e6f72672f7468756e6465726c616e652f6c61726176656c2d6b697461626f6f2d636c69656e742f762f737461626c65)](https://packagist.org/packages/thunderlane/laravel-kitaboo-client)[![Latest Unstable Version](https://camo.githubusercontent.com/fe5fbde4498038499f22ed66580e64356a2fdea84a772dd4600a3ab970821980/68747470733a2f2f706f7365722e707567782e6f72672f7468756e6465726c616e652f6c61726176656c2d6b697461626f6f2d636c69656e742f762f756e737461626c65)](https://packagist.org/packages/thunderlane/laravel-kitaboo-client)[![License](https://camo.githubusercontent.com/7aeb66da8e0f78276932e9f7b10398bfca83bdcf1b4784d2ec184aa1ff8cc968/68747470733a2f2f706f7365722e707567782e6f72672f7468756e6465726c616e652f6c61726176656c2d6b697461626f6f2d636c69656e742f6c6963656e7365)](https://choosealicense.com/licenses/mit/)[![PhpStAn](https://camo.githubusercontent.com/441b5874ce4df0a2defc892979c96c46889b69cb32119d04f0b48626349f8bc9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d656e61626c65642d627269676874677265656e2e7376673f7374796c653d666c6174)](https://github.com/phpstan/phpstan)

**Installation**

composer require thunderlane/laravel-kitaboo-client

**Setup**

Add the following lines to your .env file:

```
KITABOO_CONTEXT_URL=https://kitaboo.endpoint
KITABOO_CLIENT_ID=
KITABOO_CONSUMER_KEY=
KITABOO_CONSUMER_SECRET=

```

Run

```
php artisan vendor:publish

```

**Example usage**

```
use Thunderlane\Kitaboo\KitabooInterface;

class YourController
{
	/**
	* @var Thunderlane\Kitaboo\KitabooInterface
	*/
	private $kitaboo;

	public function __construct(KitabooInterface $kitaboo)
	{
		$this->kitaboo = $kitaboo;
	}

	/**
	 * @throws \Thunderlane\Kitaboo\Exceptions\UnknownEntityException
	 */
	public function yourAction()
	{
		$userService = $this->kitaboo->getReaderServices()->getUserService();
		$userService->authenticateUser('USERNAME', 'PASSWORD');

		$token = $userService->getCurrentUserToken();
		$userService->setCurrentUserToken($token);

		$user = $userService->getCurrentUser();
		$userService->setCurrentUser($user);

		$collectionService = $this->kitaboo->getExternalServices()->getCollectionService();
		$collectionService->listCollection();
	}
}

```

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

2431d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6446286db292063988e993d5cd345585e6878315e4146606b34ca84f71eb9652?d=identicon)[simbatlk](/maintainers/simbatlk)

---

Top Contributors

[![simbatlk](https://avatars.githubusercontent.com/u/16023610?v=4)](https://github.com/simbatlk "simbatlk (16 commits)")

---

Tags

KitabooHurix

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/thunderlane-laravel-kitaboo-client/health.svg)

```
[![Health](https://phpackages.com/badges/thunderlane-laravel-kitaboo-client/health.svg)](https://phpackages.com/packages/thunderlane-laravel-kitaboo-client)
```

###  Alternatives

[irazasyed/telegram-bot-sdk

The Unofficial Telegram Bot API PHP SDK

3.3k4.5M84](/packages/irazasyed-telegram-bot-sdk)[stechstudio/laravel-zipstream

A fast and simple streaming zip file downloader for Laravel.

4633.7M3](/packages/stechstudio-laravel-zipstream)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19462.3M1.3k](/packages/drupal-core)[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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