PHPackages                             cardtechie/tradingcardapi-sdk-php - 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. cardtechie/tradingcardapi-sdk-php

ActiveLibrary[API Development](/categories/api)

cardtechie/tradingcardapi-sdk-php
=================================

Official PHP SDK for Trading Card API - comprehensive tools for accessing trading card data, players, sets, and market information with enhanced error handling and Laravel integration

0.2.0(1mo ago)01[25 issues](https://github.com/cardtechie/tradingcardapi-sdk-php/issues)[1 PRs](https://github.com/cardtechie/tradingcardapi-sdk-php/pulls)MITPHPPHP ^8.2CI passing

Since May 27Pushed 1mo agoCompare

[ Source](https://github.com/cardtechie/tradingcardapi-sdk-php)[ Packagist](https://packagist.org/packages/cardtechie/tradingcardapi-sdk-php)[ Docs](https://github.com/cardtechie/tradingcardapi-sdk-php)[ RSS](/packages/cardtechie-tradingcardapi-sdk-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (28)Versions (28)Used By (0)

Trading Card API SDK for PHP
============================

[](#trading-card-api-sdk-for-php)

[![Latest Version on Packagist](https://camo.githubusercontent.com/408701e017bca0f05251a62cb6b1a6309b7832fbc892423daa4ea84a1c4f0e86/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636172647465636869652f74726164696e67636172646170692d73646b2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cardtechie/tradingcardapi-sdk-php)[![GitHub Tests](https://camo.githubusercontent.com/b072f37fdfa09037f66560aecb4f9cc7950c920c5d4ecdf4885e67b4c7879c95/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636172647465636869652f74726164696e67636172646170692d73646b2d7068702f636f64652d7175616c6974792e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/cardtechie/tradingcardapi-sdk-php/actions?query=workflow%3Acode-quality+branch%3Amain)[![PHPStan](https://camo.githubusercontent.com/7ac36c4c62034d3ffc05d2290b2df0193e094ce268fcd06b3550084108c64968/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636172647465636869652f74726164696e67636172646170692d73646b2d7068702f636f64652d7175616c6974792e796d6c3f6272616e63683d6d61696e266c6162656c3d7068707374616e267374796c653d666c61742d737175617265)](https://github.com/cardtechie/tradingcardapi-sdk-php/actions)[![Total Downloads](https://camo.githubusercontent.com/c2252d8aac45c2d8096048093697d487c0d28eab7ff2baf0ad64d1c76c2f3185/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636172647465636869652f74726164696e67636172646170692d73646b2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cardtechie/tradingcardapi-sdk-php)

A modern PHP SDK for integrating with the Trading Card API. This Laravel package provides a clean, type-safe interface for accessing trading card data including cards, sets, players, teams, and more.

✨ Features
----------

[](#-features)

- 🔧 **Laravel Integration** - Built specifically for Laravel applications
- 🛡️ **Type Safety** - Full PHPStan Level 4 compliance with strict typing
- 🧪 **Well Tested** - Comprehensive test suite with 80%+ coverage
- 📦 **Easy Installation** - Simple Composer installation and configuration
- 🔄 **OAuth2 Authentication** - Automatic token management and renewal
- 🚨 **Enhanced Error Handling** - Specific exception classes for different error types
- 📖 **Rich Documentation** - Clear examples and comprehensive API coverage
- ⚡ **High Performance** - Efficient HTTP client with connection pooling

📋 Requirements
--------------

[](#-requirements)

- PHP 8.2 or higher
- Laravel 10.0 or higher
- GuzzleHTTP 7.5 or higher

🚀 Installation
--------------

[](#-installation)

Install the package via Composer:

```
composer require cardtechie/tradingcardapi-sdk-php
```

Publish the configuration file:

```
php artisan vendor:publish --tag="tradingcardapi-config"
```

Add your API credentials to your `.env` file:

```
TRADINGCARDAPI_URL=https://api.tradingcardapi.com
TRADINGCARDAPI_CLIENT_ID=your_client_id
TRADINGCARDAPI_CLIENT_SECRET=your_client_secret
TRADINGCARDAPI_SSL_VERIFY=true
```

🎯 Quick Start
-------------

[](#-quick-start)

### Using the Facade

[](#using-the-facade)

```
use CardTechie\TradingCardApiSdk\Facades\TradingCardApiSdk;

// Get a specific card
$card = TradingCardApiSdk::card()->get('card-id');

// Search for cards
$cards = TradingCardApiSdk::card()->getList(['name' => 'Pikachu']);

// Get player information
$player = TradingCardApiSdk::player()->get('player-id');

// Get paginated list of players
$players = TradingCardApiSdk::player()->list(['limit' => 25, 'page' => 1]);

// Search for players
$players = TradingCardApiSdk::player()->getList(['full_name' => 'Michael Jordan']);
```

### Using the Helper Function

[](#using-the-helper-function)

```
// Get a set with related data
$set = tradingcardapi()->set()->get('set-id', ['include' => 'cards,genre']);

// Create a new team
$team = tradingcardapi()->team()->create([
    'name' => 'New Team',
    'location' => 'City Name'
]);
```

### Error Handling

[](#error-handling)

The SDK provides comprehensive error handling with specific exception classes:

```
use CardTechie\TradingCardApiSdk\Exceptions\{
    CardNotFoundException,
    ConflictException,
    ValidationException,
    RateLimitException,
    AuthenticationException
};

try {
    $card = TradingCardApiSdk::card()->get('invalid-id');
} catch (CardNotFoundException $e) {
    // Handle missing card
    echo "Card not found: " . $e->getMessage();
} catch (ConflictException $e) {
    // Handle duplicate resource (HTTP 409)
    echo "Conflict: " . $e->getMessage();
} catch (ValidationException $e) {
    // Handle validation errors
    foreach ($e->getValidationErrors() as $field => $errors) {
        echo "Field $field: " . implode(', ', $errors);
    }
} catch (RateLimitException $e) {
    // Handle rate limiting
    echo "Rate limited. Retry after: " . $e->getRetryAfter() . " seconds";
}
```

### Direct Class Usage

[](#direct-class-usage)

```
use CardTechie\TradingCardApiSdk\TradingCardApi;

$api = new TradingCardApi();
$genres = $api->genre()->getList();
```

👥 Working with Players
----------------------

[](#-working-with-players)

The Player resource provides comprehensive CRUD operations and relationship management:

### Basic Operations

[](#basic-operations)

```
use CardTechie\TradingCardApiSdk\Facades\TradingCardApiSdk;

// Get a specific player
$player = TradingCardApiSdk::player()->get('player-id');

// Create a new player
$player = TradingCardApiSdk::player()->create([
    'first_name' => 'Michael',
    'last_name' => 'Jordan'
]);

// Update player information
$player = TradingCardApiSdk::player()->update('player-id', [
    'first_name' => 'Michael Jeffrey',
    'last_name' => 'Jordan'
]);

// Delete a player
TradingCardApiSdk::player()->delete('player-id');
```

### Listing and Searching

[](#listing-and-searching)

```
// Get paginated list of players
$players = TradingCardApiSdk::player()->list([
    'limit' => 50,
    'page' => 1,
    'sort' => 'last_name'
]);

// Search for players (returns Collection)
$players = TradingCardApiSdk::player()->getList([
    'full_name' => 'Michael Jordan',
    'parent_id' => null  // Only parent players, not aliases
]);

// Find players by partial name
$players = TradingCardApiSdk::player()->getList([
    'first_name' => 'Michael'
]);
```

### Player Relationships

[](#player-relationships)

```
// Working with player relationships
$player = TradingCardApiSdk::player()->get('player-id');

// Get parent player (if this is an alias)
$parent = $player->getParent();

// Get all aliases of this player
$aliases = $player->getAliases();

// Get teams this player has been associated with
$teams = $player->getTeams();

// Get all player-team relationships
$playerteams = $player->getPlayerteams();

// Check if player is an alias
if ($player->isAlias()) {
    echo "This is an alias of: " . $player->getParent()->full_name;
}

// Check if player has aliases
if ($player->hasAliases()) {
    echo "This player has " . $player->getAliases()->count() . " aliases";
}
```

### Creating Player Hierarchies

[](#creating-player-hierarchies)

```
// Create a parent player
$parent = TradingCardApiSdk::player()->create([
    'first_name' => 'Michael',
    'last_name' => 'Jordan'
]);

// Create an alias player with parent relationship
$alias = TradingCardApiSdk::player()->create(
    ['first_name' => 'Mike', 'last_name' => 'Jordan'],
    ['parent' => ['data' => ['type' => 'players', 'id' => $parent->id]]]
);
```

### Working with Deleted Players

[](#working-with-deleted-players)

```
// List deleted players
$deletedPlayers = TradingCardApiSdk::player()->listDeleted();

// Get a specific deleted player
$deletedPlayer = TradingCardApiSdk::player()->deleted('player-id');
```

### Player Model Attributes

[](#player-model-attributes)

```
$player = TradingCardApiSdk::player()->get('player-id');

// Access player data
echo $player->first_name;        // "Michael"
echo $player->last_name;         // "Jordan"
echo $player->full_name;         // "Michael Jordan" (computed attribute)
echo $player->last_name_first;   // "Jordan, Michael" (computed attribute)

// Check relationships
echo $player->parent_id;         // UUID of parent player (if alias)
```

📚 Available Resources
---------------------

[](#-available-resources)

The SDK provides access to the following Trading Card API resources:

ResourceDescriptionMethods**Cards**Individual trading cards`get()`, `create()`, `update()`, `delete()`**Sets**Card sets and collections`get()`, `list()`, `create()`, `update()`, `delete()`, `checklist($id)`, `workflow($id)`, `addMissingCards($id)`, `addChecklist($request, $id)`**Players**Player information`get()`, `list()`, `getList()`, `create()`, `update()`, `delete()`, `listDeleted()`, `deleted($id)`**Teams**Team data`get()`, `getList()`, `create()`**Genres**Card categories/types`get()`, `list()`, `create()`, `update()`, `delete()`, `listDeleted()`, `deleted($id)`**Brands**Trading card brands`get()`, `list()`, `create()`, `update()`, `delete()`**Manufacturers**Trading card manufacturers`get()`, `list()`, `create()`, `update()`, `delete()`**Years**Trading card years`get()`, `list()`, `create()`, `update()`, `delete()`**ObjectAttributes**Object attributes`get()`, `list()`, `create()`, `update()`, `delete()`**SetSources**Set data sources`get()`, `list()`, `create()`, `update()`, `delete()`, `forSet($setId)`**Stats**Entity statistics and analytics`get($type)`, `getCounts()`, `getSnapshots()`, `getGrowth()`**Attributes**Card attributes`get()`, `getList()`**Workflow**Set workflow management and bulk operations`actionableSets()`, `updateSetTodo($todoId, $attributes)`, `bulkInitializeWorkflow()`, `getBulkInitializeStatus($jobId)`, `getSetTodos($setId)`**CardImages**Card image upload and management`list()`, `get($id)`, `upload($file, $cardId, $imageType)`, `update($id, $attributes)`, `delete($id)`, `getDownloadUrl($id, $size)`### Stats Resource

[](#stats-resource)

The Stats resource provides analytics and tracking capabilities for entity counts:

```
// Get current counts for all entity types
$counts = $api->stats()->getCounts();

// Access counts for a specific entity type
$setsCount = $counts->getByEntityType('sets');
echo $setsCount->total;      // Total count
echo $setsCount->published;  // Published count
echo $setsCount->draft;      // Draft count
echo $setsCount->archived;   // Archived count

// Get growth metrics (default: 7 days)
$growth = $api->stats()->getGrowth();
// Or specify a period: '7d', '30d', '90d', 'week', 'month'
$growth = $api->stats()->getGrowth('30d');

$setsGrowth = $growth->getByEntityType('sets');
echo $setsGrowth->current;          // Current count
echo $setsGrowth->previous;         // Previous period count
echo $setsGrowth->change;           // Absolute change
echo $setsGrowth->percentageChange; // Percentage change

// Get historical snapshots
$snapshots = $api->stats()->getSnapshots();

// With filters
$snapshots = $api->stats()->getSnapshots([
    'entity_type' => 'sets',
    'from' => '2024-11-01',
    'to' => '2024-11-30',
]);

foreach ($snapshots->snapshots as $snapshot) {
    echo $snapshot->date;        // Snapshot date
    echo $snapshot->entityType;  // Entity type
    echo $snapshot->total;       // Total at that point
}
```

### SetSource Resource

[](#setsource-resource)

The SetSource resource manages data sources for trading card sets (checklists, metadata, images):

```
// Get all sources for a specific set
$sources = $api->setSource()->forSet('set-id');

// Get a specific source
$source = $api->setSource()->get('source-id');

// Create a new set source
$source = $api->setSource()->create([
    'set_id' => 'set-uuid',
    'source_url' => 'https://example.com/checklist',
    'source_name' => 'Example Source',
    'source_type' => 'checklist',  // checklist, metadata, or images
]);

// Update a source
$source = $api->setSource()->update('source-id', [
    'source_url' => 'https://example.com/updated-checklist',
    'verified_at' => '2024-01-15T10:30:00Z',
]);

// Delete a source
$api->setSource()->delete('source-id');

// Include sources when fetching a set
$set = $api->set()->get('set-id', ['include' => 'sources']);

// Returns an Illuminate\Support\Collection of SetSource models
$sources = $set->sources();

if ($sources->isEmpty()) {
    echo 'No sources found for this set.';
} else {
    $firstSource = $sources->first();
    echo $firstSource->source_name;
}
```

### Workflow Resource

[](#workflow-resource)

The Workflow resource manages set workflow steps (todos) and bulk initialization:

```
// Get sets that have actionable workflow steps
$actionable = $api->workflow()->actionableSets();
foreach ($actionable->data as $set) {
    echo $set->attributes->name;
}

// Filter actionable sets
$actionable = $api->workflow()->actionableSets(['filter[sport]' => 'baseball']);

// Get workflow status for a specific set (via Set resource)
$workflow = $api->set()->workflow('set-id');

// Update a workflow step (set-todo) status
$result = $api->workflow()->updateSetTodo('todo-id', [
    'status' => 'completed',
]);

// Bulk initialize workflow todos for all existing sets
$job = $api->workflow()->bulkInitializeWorkflow();
echo $job->data->job_id;   // Job ID to poll for status
echo $job->data->status;   // 'queued'

// Initialize workflow todos for specific sets only
$job = $api->workflow()->bulkInitializeWorkflow([
    'set_ids' => ['set-id-1', 'set-id-2'],
]);

// Poll bulk initialization job status
$status = $api->workflow()->getBulkInitializeStatus($job->data->job_id);
echo $status->data->status;     // 'queued', 'processing', or 'completed'
echo $status->data->processed;  // Sets processed so far
echo $status->data->total;      // Total sets to process

// Get workflow todos for a specific set
$result = $api->workflow()->getSetTodos('set-id');
foreach ($result->todos as $todo) {
    echo $todo->step;    // e.g. 'discover_sources'
    echo $todo->status;  // e.g. 'completed'
}
// Returns empty todos array when set exists but has no initialized workflow
```

### CardImage Resource

[](#cardimage-resource)

The CardImage resource handles card image uploads and management:

```
// Upload a card image
$image = $api->cardImage()->upload(
    $request->file('image'),  // UploadedFile or file path
    'card-id',
    'front'  // 'front' or 'back'
);

// Upload with additional attributes
$image = $api->cardImage()->upload(
    '/path/to/image.jpg',
    'card-id',
    'front',
    ['is_primary' => true]
);

// Get a card image
$image = $api->cardImage()->get('image-id');

// Get download URL
$url = $api->cardImage()->getDownloadUrl('image-id');           // original size
$url = $api->cardImage()->getDownloadUrl('image-id', 'small');  // small variant

// Update image metadata
$image = $api->cardImage()->update('image-id', ['is_primary' => true]);

// List card images with filtering
$images = $api->cardImage()->list(['filter[card_id]' => 'card-id']);

// Delete a card image
$api->cardImage()->delete('image-id');
```

🔧 Configuration
---------------

[](#-configuration)

The configuration file (`config/tradingcardapi.php`) supports:

```
return [
    'url' => env('TRADINGCARDAPI_URL', ''),
    'ssl_verify' => (bool) env('TRADINGCARDAPI_SSL_VERIFY', true),
    'client_id' => env('TRADINGCARDAPI_CLIENT_ID', ''),
    'client_secret' => env('TRADINGCARDAPI_CLIENT_SECRET', ''),
    'scope' => env('TRADINGCARDAPI_SCOPE', 'read:published'),
];
```

### OAuth Scopes

[](#oauth-scopes)

Configure the OAuth scopes to request when authenticating. Available scopes:

- **`read:published`** (default) - Access published content only
- **`read:draft`** - Access published and draft content
- **`read:all-status`** - Access all content regardless of status
- **`write`** - Create and update resources
- **`delete`** - Delete resources

#### Examples

[](#examples)

**Read-only access to published content:**

```
TRADINGCARDAPI_SCOPE="read:published"
```

**Admin access with full permissions:**

```
TRADINGCARDAPI_SCOPE="read:all-status write delete"
```

**Content management (no delete):**

```
TRADINGCARDAPI_SCOPE="read:draft write"
```

Multiple scopes should be separated by spaces. If not specified, the default scope (`read:published`) is used.

🧪 Development &amp; Testing
---------------------------

[](#-development--testing)

This project uses modern PHP development tools and practices:

### Prerequisites

[](#prerequisites)

- Docker and Docker Compose
- Make (optional, for convenience commands)

### Getting Started

[](#getting-started)

```
# Clone the repository
git clone https://github.com/cardtechie/tradingcardapi-sdk-php.git
cd tradingcardapi-sdk-php

# Start development environment
make up

# Install dependencies
make install

# Run tests
make test

# Run code quality checks
make check
```

### Available Commands

[](#available-commands)

```
make test              # Run test suite
make analyse           # Run PHPStan static analysis
make format            # Format code with Laravel Pint
make check             # Run all quality checks
make quality           # Run comprehensive quality checks with coverage
make ci                # Run CI pipeline locally

# Release management commands
make version           # Show current version
make changelog-update  # Update changelog for current version
make release-notes-preview  # Generate release notes preview
```

### Code Quality Standards

[](#code-quality-standards)

This project maintains high code quality standards:

- ✅ **PHPStan Level 4** - Strict static analysis
- ✅ **PSR-12** - Code style compliance via Laravel Pint
- ✅ **80%+ Test Coverage** - Comprehensive test suite using Pest
- ✅ **Automated CI/CD** - Quality checks on all PRs

📖 Documentation
---------------

[](#-documentation)

- **[Error Handling Guide](docs/ERROR-HANDLING.md)** - Comprehensive guide to exception handling
- **[Response Validation](docs/VALIDATION.md)** - Response validation and schema handling
- **[Version Management](docs/VERSION-MANAGEMENT.md)** - Release process and versioning
- **[Trading Card API Documentation](https://docs.tradingcardapi.com)** - Complete API reference

🤝 Contributing
--------------

[](#-contributing)

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.

### Development Workflow

[](#development-workflow)

1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Run quality checks: `make check`
5. Submit a pull request

🐛 Bug Reports &amp; Feature Requests
------------------------------------

[](#-bug-reports--feature-requests)

Please use the [GitHub Issues](https://github.com/cardtechie/tradingcardapi-sdk-php/issues) to report bugs or request features.

🔒 Security
----------

[](#-security)

Please review our [Security Policy](../../security/policy) for reporting security vulnerabilities.

🚀 Release Process
-----------------

[](#-release-process)

This project uses a sophisticated, automated release management system adapted from the main Trading Card API repository.

### Version Management

[](#version-management)

The SDK uses intelligent, branch-aware semantic versioning:

- **Production releases** (`1.2.3`) - Created from `main` branch
- **Beta releases** (`1.3.0.beta-5`) - Created from `develop` branch
- **Release candidates** (`1.3.0.rc-2`) - Created from `release/*` branches
- **Development versions** (`1.2.3-alpha.4`) - Feature branches

### Development Commands

[](#development-commands)

```
# Check current version
make version

# Preview version for different branches
make version-preview --branch=main
make version-preview --branch=develop

# Update changelog for current version
make changelog-update

# Generate release notes preview
make release-notes-preview
```

### Automated Release Process

[](#automated-release-process)

1. **Development**: Features are developed on feature branches
2. **Integration**: Changes are merged to `develop` for testing
3. **Release Preparation**: Release branches are created for final testing
4. **Production Release**: Stable releases are merged to `main`
5. **Automation**: GitHub Actions handles versioning, changelog updates, and Packagist publishing

See [docs/VERSION-MANAGEMENT.md](docs/VERSION-MANAGEMENT.md) for complete release process documentation.

📄 Changelog
-----------

[](#-changelog)

See [CHANGELOG.md](CHANGELOG.md) for recent changes.

👥 Credits
---------

[](#-credits)

- [Josh Harrison](https://github.com/picklewagon) - Lead Developer
- [All Contributors](../../contributors)

📜 License
---------

[](#-license)

This project is licensed under the MIT License. See [LICENSE.md](LICENSE.md) for details.

---

Made with ❤️ by [CardTechie](https://github.com/cardtechie)

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance89

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.5% 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

Recently: every ~20 days

Total

18

Last Release

56d ago

PHP version history (2 changes)0.1.0PHP ^8.1

0.2.0PHP ^8.2

### Community

Maintainers

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

---

Top Contributors

[![picklewagon](https://avatars.githubusercontent.com/u/1139280?v=4)](https://github.com/picklewagon "picklewagon (236 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (12 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (7 commits)")

---

Tags

laravelcardtechietradingcardapi-sdk-phptradingcardapi

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cardtechie-tradingcardapi-sdk-php/health.svg)

```
[![Health](https://phpackages.com/badges/cardtechie-tradingcardapi-sdk-php/health.svg)](https://phpackages.com/packages/cardtechie-tradingcardapi-sdk-php)
```

###  Alternatives

[simplestats-io/laravel-client

Client for SimpleStats!

4515.5k](/packages/simplestats-io-laravel-client)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)

PHPackages © 2026

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