itdotmedia / laravel-piper-link
Add support for the piper API to your Laravel project.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/itdotmedia/laravel-piper-link
Requires
- illuminate/console: ^12.0
- illuminate/contracts: ^12.0
- illuminate/http: ^12.0
- itdotmedia/php-piper-link: dev-master
- spatie/laravel-package-tools: ^1.9
This package is auto-updated.
Last update: 2025-12-05 10:48:46 UTC
README
A Laravel wrapper for PHP PiperLink
Installation
- Require the package
composer require itdotmedia/laravel-piper-link - Install the service provider and configuration files using
php artisan piper:install - Add the
IsPiperRouteMiddleware to yourbootstrap/app.php
... ->withMiddleware(function (Middleware $middleware): void { $middleware->append(\Idm\LaravelPiperLink\Http\Middleware\IsPiperRoute::class); }) ...