PHPackages                             asifm42/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. [API Development](/categories/api)
4. /
5. asifm42/scorm-cloud-laravel

ActiveLibrary[API Development](/categories/api)

asifm42/scorm-cloud-laravel
===========================

Provides a ScormCloud API gateway for Laravel applications

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

Since Nov 20Pushed 8y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (3)Versions (4)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 asifm42/scorm-cloud-laravel
```

Composer.json:

```
{
    "require": {
        "asifm42/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' => [
    // ...
    AsifM42\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="AsifM42\ScormCloudGateway\ScormCloudServiceProvider" --tag="config"
```

When published, [the `config/scormcloud.php` config file](https://github.com/asifm42/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

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity50

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

Total

2

Last Release

3089d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/19e94f33fff5211ffb821fc69c4a727f7a996ff5fd7048886ed2c834b98d68ea?d=identicon)[asifm42](/maintainers/asifm42)

---

Top Contributors

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

---

Tags

phplaravelcloudscormasifm42

### Embed Badge

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

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

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[resend/resend-laravel

Resend for Laravel

1191.4M6](/packages/resend-resend-laravel)[joisarjignesh/bigbluebutton

BigBlueButton Server API Library for Laravel

162145.5k1](/packages/joisarjignesh-bigbluebutton)[anahkiasen/flickering

A modern interface for the Flickr API

535.9k1](/packages/anahkiasen-flickering)[dariusiii/tmdb-laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.

1821.1k](/packages/dariusiii-tmdb-laravel)[gufy/whmcs

WHMCS API for Laravel 5

201.7k](/packages/gufy-whmcs)

PHPackages © 2026

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