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(2mo ago)0144↓100%PHP

Since Sep 11Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/peteradeojo/doppler-laravel)[ Packagist](https://packagist.org/packages/onezero/laas)[ RSS](/packages/onezero-laas/feed)WikiDiscussions main Synced 1mo 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

42

—

FairBetter than 89% of packages

Maintenance94

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

60d 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

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M475](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M452](/packages/google-gax)

PHPackages © 2026

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