PHPackages                             ijeffro/laralocker - 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. ijeffro/laralocker

ActiveLibrary

ijeffro/laralocker
==================

Laravel + Learning Locker || A Laravel Package for Learning Locker.

2.0.x-dev(6y ago)9841[4 issues](https://github.com/ijeffro/laralocker/issues)[3 PRs](https://github.com/ijeffro/laralocker/pulls)MITPHPPHP &gt;=5.6

Since Nov 15Pushed 3y ago2 watchersCompare

[ Source](https://github.com/ijeffro/laralocker)[ Packagist](https://packagist.org/packages/ijeffro/laralocker)[ Docs](https://ijeffro.github.io/laralocker/)[ RSS](/packages/ijeffro-laralocker/feed)WikiDiscussions master Synced 2d ago

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

[![Laravel](https://camo.githubusercontent.com/add54281c9fb74f167b2c1f1e13468346d6ef8885dc90eb7036e09b579462947/68747470733a2f2f6c61726176656c2e636f6d2f696d672f6c6f676f6d61726b2e6d696e2e737667)](https://laravel.com/docs/) [![plus](https://camo.githubusercontent.com/4bec3eeb95c534821eb5ff3a5ce11f7a5d1cbb407ce063ee82fb0a5b71e697c1/68747470733a2f2f7777772e69636f6e7364622e636f6d2f69636f6e732f707265766965772f726f79616c2d626c75652f706c75732d372d78786c2e706e67)](#) [![Learning Locker](https://camo.githubusercontent.com/bdaed833deffedcaeeadff1f26b87a6abf9379f0be987e98906fd3891d0fc77d/68747470733a2f2f7777772e6874326c6162732e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031392f30332f6c6561726e696e672d6c6f636b65722d6c6f676f2d69636f6e2e706e67)](https://docs.learninglocker.net/)

LaraLocker
==========

[](#laralocker)

[![Build Status](https://camo.githubusercontent.com/83dd4e966a913341539cdc52da5c7ad242f41abb4e9c7595133653fc39d36e26/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f696a656666726f2f6c6172616c6f636b65722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/ijeffro/laralocker)[![Quality Score](https://camo.githubusercontent.com/acada928c6af3a39097082fc127b7b120961a9e83f6b3bf158e25f908a3c5b2c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ijeffro/laralocker)[![Total Downloads](https://camo.githubusercontent.com/3d6774f5385d2b830a2bc4bc15c719e0f5e3d27c1021c4f6c619ab99b01892b6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ijeffro/laralocker)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Latest Version on Packagist](https://camo.githubusercontent.com/70a0b315486291196be217b49cbdd2b3248e25a8d36e1df4f721a56b6aa66564/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ijeffro/laralocker)[![Latest Version](https://camo.githubusercontent.com/0f5cf52f0f8526725ed0a760aa88acfd50d765d012ed44405877af06c9562230/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f496a656666726f2f4c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://github.com/Ijeffro/Laralocker/releases)

A Laravel package for Learning Locker® the most installed Learning Record Store in the world. LaraLocker is a PHP Client for the Learning Locker® API with support for Laravel.

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

[](#installation)

You can install the package via composer:

```
composer require ijeffro/laralocker
```

Add the envirnoment variables to laravel's .env

```
LEARNING_LOCKER_URL=https://saas.learninglocker.net
LEARNING_LOCKER_KEY=91e2ed0716a19728dc5deff542b7987f59802f56
LEARNING_LOCKER_SECRET=fa2d7e9850f401d6ae98e2805ccb404c6aaa8c45
```

Run the install command to add the api routes...

```
php artisan laralocker:install
```

Usage
-----

[](#usage)

You can call Learning Locker® in various different ways

Trying using the Learning Locker Facade to access the stores (LRS).

```
use LearningLocker;
```

Now try Interacting with the Learning locker API.

```
LearningLocker::stores()->get();
```

Get Learning Locker stores by store id (\_id).

```
LearningLocker::store($id)->get();
```

Create a new store in Learning Locker.

```
LearningLocker::store()->create($data);
```

Update a Learning Locker store by id (\_id)

```
LearningLocker::store($id)->update($data);
```

Delete a Learning Locker store

```
LearningLocker::store($id)->delete();
```

### Wiki

[](#wiki)

Please see [Wiki](https://github.com/ijeffro/laralocker/wiki) for more information what has changed recently.

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Phil Graham](https://github.com/ijeffro)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

[![Latest Version on Packagist](https://camo.githubusercontent.com/70a0b315486291196be217b49cbdd2b3248e25a8d36e1df4f721a56b6aa66564/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ijeffro/laralocker)[![Build Status](https://camo.githubusercontent.com/83dd4e966a913341539cdc52da5c7ad242f41abb4e9c7595133653fc39d36e26/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f696a656666726f2f6c6172616c6f636b65722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/ijeffro/laralocker)[![Quality Score](https://camo.githubusercontent.com/acada928c6af3a39097082fc127b7b120961a9e83f6b3bf158e25f908a3c5b2c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ijeffro/laralocker)[![Total Downloads](https://camo.githubusercontent.com/3d6774f5385d2b830a2bc4bc15c719e0f5e3d27c1021c4f6c619ab99b01892b6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696a656666726f2f6c6172616c6f636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ijeffro/laralocker)

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance11

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.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 ~11 days

Total

2

Last Release

2360d ago

PHP version history (2 changes)2.0.x-devPHP &gt;=5.6

1.0.x-devPHP &gt;=5.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/b79e7285faffd83f2215b835e6e5eeed3bdb3bb88db26a3e9eca259053bed4c8?d=identicon)[ijeffro](/maintainers/ijeffro)

---

Top Contributors

[![ijeffro](https://avatars.githubusercontent.com/u/14099877?v=4)](https://github.com/ijeffro "ijeffro (101 commits)")[![EcoinTest](https://avatars.githubusercontent.com/u/153815470?v=4)](https://github.com/EcoinTest "EcoinTest (4 commits)")

---

Tags

laravellearninglockerlrsphpxapilaravelxAPIlrslearning locker

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/ijeffro-laralocker/health.svg)

```
[![Health](https://phpackages.com/badges/ijeffro-laralocker/health.svg)](https://phpackages.com/packages/ijeffro-laralocker)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

1516.7k](/packages/truckersmp-steam-socialite)

PHPackages © 2026

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