PHPackages                             updaterbot/laravel-runcloud-sdk - 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. updaterbot/laravel-runcloud-sdk

ActiveLibrary

updaterbot/laravel-runcloud-sdk
===============================

Laravel package wrapper around the runcloud API SDK

1.0.2(3y ago)15MITPHP

Since Apr 27Pushed 3y agoCompare

[ Source](https://github.com/updaterbot/laravel-runcloud-sdk)[ Packagist](https://packagist.org/packages/updaterbot/laravel-runcloud-sdk)[ RSS](/packages/updaterbot-laravel-runcloud-sdk/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Runcloud SDK
====================

[](#laravel-runcloud-sdk)

This is a simple laravel package that creates a provider for the SDK developed by onhonvercode here:

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

[](#installation)

Require the package via composer in your laravel app:

```
composer require updaterbot/laravel-runcloud-sdk
```

### Publish the package:

[](#publish-the-package)

```
php artisan vendor:publish
```

Select `Mindfullsilence\LaravelRuncloudSdk\Providers\RuncloudClientProvider` from the list provided.

### Add your api keys to the .env file:

[](#add-your-api-keys-to-the-env-file)

```
RUNCLOUD_PUBLIC_KEY=your-api-key
RUNCLOUD_SECRET_KEY=your-secret-key

```

Usage
-----

[](#usage)

Once installed, you can access the runcloud class instance using the facade, dependency injection, or the service container:

```
use \Mindfullsilence\LaravelRuncloudSdk\Clients\RuncloudClient;

class SomeClass {
    public function __construct(
        RuncloudClient $runcloud
    ) {
        $this->runcloud = $runcloud;

        return $this->runcloud->ping() === 'pong';
    }
}
```

```
use \Mindfullsilence\LaravelRuncloudSdk\Facades\RuncloudClient;

class SomeClass {
    public function index() {
        return RuncloudClient::ping() === 'pong';
    }
}
```

```
use \Mindfullsilence\LaravelRuncloudSdk\Clients\RuncloudClient;

class SomeClass {
    public function index() {
        return app(RuncloudClient::class)->ping() === 'pong';
    }

    // or
    public function index() {
        return app('runcloud.api')->ping() === 'pong';
    }
}
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.2% 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

4

Last Release

1110d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/08530a0e66116ce4c2eb1facdabaf05792105983e02027411f033948e1236426?d=identicon)[bicsakszerk](/maintainers/bicsakszerk)

---

Top Contributors

[![mindfullsilence](https://avatars.githubusercontent.com/u/1510718?v=4)](https://github.com/mindfullsilence "mindfullsilence (9 commits)")[![updaterbot](https://avatars.githubusercontent.com/u/131939138?v=4)](https://github.com/updaterbot "updaterbot (4 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/updaterbot-laravel-runcloud-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/updaterbot-laravel-runcloud-sdk/health.svg)](https://phpackages.com/packages/updaterbot-laravel-runcloud-sdk)
```

PHPackages © 2026

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