PHPackages                             eis3nhorn/scorm-cloud-laravel - 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. eis3nhorn/scorm-cloud-laravel

ActiveLibrary

eis3nhorn/scorm-cloud-laravel
=============================

Provides a ScormCloud API gateway for Laravel applications

v0.0.2(8y ago)02MITPHPPHP &gt;=7.0.0

Since Nov 20Pushed 6y agoCompare

[ Source](https://github.com/eis3nhorn/scorm-cloud-laravel)[ Packagist](https://packagist.org/packages/eis3nhorn/scorm-cloud-laravel)[ RSS](/packages/eis3nhorn-scorm-cloud-laravel/feed)WikiDiscussions master Synced 2d ago

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

scorm-cloud-laravel
===================

[](#scorm-cloud-laravel)

Provides a ScormCloud API gateway for Laravel applications.

Requirements
------------

[](#requirements)

This package can be used in Laravel 5.4 or higher.

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

[](#installation)

This library is available [via Composer](https://packagist.org/packages/asifm42/scorm-cloud-php).

Command Line:

```
composer require eis3nhorn/scorm-cloud-laravel
```

Composer.json:

```
{
    "require": {
        "eis3nhorn/scorm-cloud-laravel": "dev-master"
    }
}
```

In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

```
'providers' => [
    // ...
    eis3nhorn\ScormCloudGateway\ScormCloudServiceProvider::class,
];
```

### Configuration

[](#configuration)

You can configure your credentials and by publishing the config file or adding the appropriate environment variables.

##### Environment variables:

[](#environment-variables)

- SCORMCLOUD\_URL - This attribute is a relic of a previous Rustici ScormCloud product iteration. It will most likely not need to be overriden. But its there for instances such as when HTTPS cannot be supported, etc. (Default: "")
- SCORMCLOUD\_APPID - The app id (required)
- SCORMCLOUD\_KEY - The secret key associated with the app id (required)
- SCORMCLOUD\_ORGANIZATION - The name of the organization associated with the app (Default: "scl")
- SCORMCLOUD\_APP\_NAME - The app name (Default: "app")
- SCORMCLOUD\_VERSION - The version number (Default: "1.0")

The organization name, the app name, and version number are used to create an origin string. The origin string is useful for debugging on the SCORM Cloud developers’ side but is not required. The default string will be "scl.app.1.0".

You can publish the configuration file with:

```
php artisan vendor:publish --provider="eis3nhorn\ScormCloudGateway\ScormCloudServiceProvider" --tag="config"
```

When published, [the `config/scormcloud.php` config file](https://github.com/eis3nhorn/scorm-cloud-laravel/blob/master/config/scormcloud.php) contains:

```
return [

    /**
     * The scorm engine service url.
     *
     * This attribute is a relic of a previous Rustici ScormCloud product
     * iteration. It will most likely not need to be overriden. But its
     * there for instances such as when HTTPS cannot be supported, etc.
     */
    'url' => env('SCORMCLOUD_URL', 'https://cloud.scorm.com/EngineWebServices'),

    /**
     * The application id
     *
     * Required
     */
    'app_id' => env('SCORMCLOUD_APPID', ''),

    /**
     * Any secret key associated with the app id
     *
     * Required
     */
    'key' => env('SCORMCLOUD_KEY', ''),

    /**
     * The organization name.
     *
     * This will be used to create an origin string which is useful
     * for debugging on the SCORM Cloud developers’ side
     *
     * optional
     */
    'organization' => env('SCORMCLOUD_ORGANIZATION', 'scl'),

    /**
     * The app name.
     *
     * This will be used to create an origin string which is useful
     * for debugging on the SCORM Cloud developers’ side
     *
     * optional
     */
    'app_name' => env('SCORMCLOUD_APP_NAME', 'app'),

    /**
     * The version number.
     *
     * This will be used to create an origin string which is useful
     * for debugging on the SCORM Cloud developers’ side
     *
     * optional
     */
    'version' => env('SCORMCLOUD_VERSION','1.0')
];
```

### Usage

[](#usage)

You can use the provided helper to access the gateway:

```
scormcloud()
```

You can get a list of the courses by:

```
scormcloud()->getCourses()
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65% 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 ~8 days

Total

2

Last Release

3087d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7c52dd716d2f29f47bb1823ade5befb11a687f2e40409120257dac04f155136a?d=identicon)[eis3nhorn](/maintainers/eis3nhorn)

---

Top Contributors

[![asifm42](https://avatars.githubusercontent.com/u/750384?v=4)](https://github.com/asifm42 "asifm42 (13 commits)")[![eis3nhorn](https://avatars.githubusercontent.com/u/17926316?v=4)](https://github.com/eis3nhorn "eis3nhorn (7 commits)")

---

Tags

phplaravelcloudscormasifm42

### Embed Badge

![Health badge](/badges/eis3nhorn-scorm-cloud-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/eis3nhorn-scorm-cloud-laravel/health.svg)](https://phpackages.com/packages/eis3nhorn-scorm-cloud-laravel)
```

###  Alternatives

[maatwebsite/excel

Supercharged Excel exports and imports in Laravel

12.7k144.3M712](/packages/maatwebsite-excel)[monicahq/laravel-cloudflare

Add Cloudflare ip addresses to trusted proxies for Laravel.

3372.7M4](/packages/monicahq-laravel-cloudflare)[laragear/preload

Effortlessly make a Preload script for your Laravel application.

119363.5k](/packages/laragear-preload)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[kra8/laravel-snowflake

Snowflake for Laravel and Lumen.

188402.3k6](/packages/kra8-laravel-snowflake)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)

PHPackages © 2026

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