PHPackages                             onezero/laas - 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. onezero/laas

ActiveLibrary[API Development](/categories/api)

onezero/laas
============

Laravel package for integrating the LAAS API

1.2.3(3mo ago)0145PHP

Since Sep 11Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/peteradeojo/doppler-laravel)[ Packagist](https://packagist.org/packages/onezero/laas)[ RSS](/packages/onezero-laas/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (4)Versions (6)Used By (0)

Laravel SDK for the LAAS API
============================

[](#laravel-sdk-for-the-laas-api)

Installation
------------

[](#installation)

```
composer require onezero/laas
```

Usage
-----

[](#usage)

To use the SDK, set your LAAS\_TOKEN in your `.env` file. You can get this from the LAAS dashboard.

```
LAAS_TOKEN=your-app-token
```

For Laravel v9^, the package will automatically register the service provider and facade.

For Laravel v8^, add the service provider and facade to your `config/app.php` file.

```
// config/app.php
'providers' => [
    ...,
    OneZero\Laas\LaasServiceProvider::class,
],
```

```
use OneZero\Laas\Laas;
...
$laas = new Laas();

$laas->error('Something went wrong', context: [
    'user' => 'John Doe',
    'email' => 'johndoe@example.com',
]);
```

or use the Facade

```
use OneZero\Laas\Facades\Laas;

Laas::error('Something went wrong', context: [
    'user' => 'John Doe',
    'email' => '',
]);

// OR use the function helper

laas()->error('Something went wrong', context: [
    'user' => 'John Doe',
    'email' => '',
]);
```

Log Levels
----------

[](#log-levels)

All the basic laravel log levels are available and an added `critical` and `warning` level. Just for vibes.

```
laas()->debug('Debug message');
laas()->info('Info message');
laas()->error('Error message');
laas()->emergency('Emergency message');

// Bonus
laas()->warning('Warning message');
laas()->critical('Critical message');
```

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance80

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 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 ~227 days

Total

5

Last Release

106d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3f046e85501d33cc342144811763830ee73ace77679c7b7636d99fbe0f6298eb?d=identicon)[peteradeojo](/maintainers/peteradeojo)

---

Top Contributors

[![peteradeojo](https://avatars.githubusercontent.com/u/60135915?v=4)](https://github.com/peteradeojo "peteradeojo (15 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/onezero-laas/health.svg)

```
[![Health](https://phpackages.com/badges/onezero-laas/health.svg)](https://phpackages.com/packages/onezero-laas)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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