PHPackages                             yaroslawww/laravel-workcast - 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. yaroslawww/laravel-workcast

Abandoned → [think.studio/laravel-workcast](/?search=think.studio%2Flaravel-workcast)Library[API Development](/categories/api)

yaroslawww/laravel-workcast
===========================

workcast api integration for laravel

2.2.0(2y ago)144MITPHPPHP ^8.0

Since Apr 19Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/laravel-workcast)[ Packagist](https://packagist.org/packages/yaroslawww/laravel-workcast)[ Docs](https://github.com/dev-think-one/laravel-workcast)[ RSS](/packages/yaroslawww-laravel-workcast/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependencies (7)Versions (5)Used By (0)

Laravel: Workcast API integration
=================================

[](#laravel-workcast-api-integration)

[![Packagist License](https://camo.githubusercontent.com/90c885508cd7fffa685b23a755e633c5eccc4eb3c7b10657f3938ede4b5e7149/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d776f726b636173743f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/90c885508cd7fffa685b23a755e633c5eccc4eb3c7b10657f3938ede4b5e7149/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d776f726b636173743f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/47c75d8510d9bf6a4746a0991cfc359a91a539fa3032e759a7c0627666eb3469/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d776f726b63617374)](https://packagist.org/packages/think.studio/laravel-workcast)[![Total Downloads](https://camo.githubusercontent.com/9804820e1034c3e4509d9a410c90ef7dbf86ea3243ed57294a47e2f64e906845/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d776f726b63617374)](https://packagist.org/packages/think.studio/laravel-workcast)[![Build Status](https://camo.githubusercontent.com/eec035e16ff3a2b715f6d64b920c51d84cd5b5ad941b6661cabed25e4a5b2b81/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d776f726b636173742f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-workcast/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/fa7da1521ddb6ea8145f56a527d6ab043afabaa7685402d40e57f477257451ac/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d776f726b636173742f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-workcast/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/60b2f5d0c366a09fbf1b002b7dc896b6e18746edd3cdf2c2d46eaf3ef8ca5cd6/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d776f726b636173742f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-workcast/?branch=main)

Api documentation you can find [there](https://api-docs.workcast.com/)

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

[](#installation)

You can install the package via composer:

```
composer require think.studio/laravel-workcast
```

You can publish the config file with:

```
php artisan vendor:publish --provider="LaravelWorkcast\ServiceProvider" --tag="config"
```

Configuration in *.env*

```
WORKCAST_API_KEY='066t...L21135A='
```

Usage
-----

[](#usage)

Paginated request example for listings:

```
$pagination = Workcast::events()->list([ 'limit' => 50 ]);
foreach ($pagination->items() as $item) {
    echo $item['eventPak'];
}

if ($pagination->hasNext()) {
    echo $pagination->nextLink();
    // Workcast::events()->callPagination($pagination->nextLink());
}
```

Single entity request:

```
$item = Workcast::events()->get(22);
dd($item->json());
```

By default in package specified this list of endpoints:

```
```

But you can also specify you own endpoint:

```
use LaravelWorkcast\Endpoints\AbstractEndpoint;
use LaravelWorkcast\Endpoints\HasRestFullRead;
use LaravelWorkcast\Endpoints\WithRestFullRead;
class Presenters extends AbstractEndpoint implements HasRestFullRead
{
    use WithRestFullRead;

    protected int $eventId;

    public function __construct(Auth $auth, int $eventId)
    {
        $this->eventId = $eventId;

        parent::__construct($auth);
    }

    public function baseUrl(): string
    {
        return "presenters/{$this->eventId}/sessions/" . $this->key();
    }

    public function key(): string
    {
        return 'presenters';
    }
}

$pagination = (new Presenters(Workcast::getAuth(), 33))->list([ 'limit' => 50 ]);
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

Total

4

Last Release

1039d ago

Major Versions

1.0.0 → 2.0.02022-04-15

PHP version history (3 changes)1.0.0PHP &gt;7.4

2.0.0PHP &gt;=8.0

2.1.0PHP ^8.0

### Community

Maintainers

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

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (7 commits)")

---

Tags

workcastworkcast.comlaravel-workcast

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-laravel-workcast/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-laravel-workcast/health.svg)](https://phpackages.com/packages/yaroslawww-laravel-workcast)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[nickurt/laravel-postcodeapi

Universal PostcodeApi for Laravel 11.x/12.x/13.x

97221.2k](/packages/nickurt-laravel-postcodeapi)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)[spinen/laravel-clickup

SPINEN's Laravel Package for ClickUp.

282.2k](/packages/spinen-laravel-clickup)

PHPackages © 2026

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