PHPackages                             mindfullsilence/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. [API Development](/categories/api)
4. /
5. mindfullsilence/laravel-runcloud-sdk

ActiveLibrary[API Development](/categories/api)

mindfullsilence/laravel-runcloud-sdk
====================================

Laravel package wrapper around the runcloud API SDK

1.0.1(6y ago)042PHPCI failing

Since Sep 22Pushed 2y ago1 watchersCompare

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

READMEChangelogDependencies (3)Versions (4)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 mindfullsilence/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

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

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

2

Last Release

2473d ago

### Community

Maintainers

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

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24016.2M18](/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

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

PHPackages © 2026

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