veltix / laravel-montonio
Laravel integration for the Montonio Payments and Shipping APIs
Requires
- php: ^8.3
- guzzlehttp/guzzle: ^7.0
- illuminate/cache: ^11.0|^12.0|^13.0
- illuminate/console: ^11.0|^12.0|^13.0
- illuminate/database: ^11.0|^12.0|^13.0
- illuminate/events: ^11.0|^12.0|^13.0
- illuminate/http: ^11.0|^12.0|^13.0
- illuminate/queue: ^11.0|^12.0|^13.0
- illuminate/routing: ^11.0|^12.0|^13.0
- illuminate/support: ^11.0|^12.0|^13.0
- veltix/montonio: ^1.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.27
- orchestra/testbench: ^9.0|^10.9.0|^11.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-type-coverage: ^4.0
- rector/rector: ^2.3
README
Laravel integration for the Montonio Payments and Shipping APIs.
Requirements
- PHP 8.3+
- Laravel 11, 12, or 13
Installation
composer require veltix/laravel-montonio
Run the install command to publish the config and migrations:
php artisan montonio:install
If you plan to use your own database tables and models, skip migrations during install:
php artisan montonio:install --skip-migrations
Add your API credentials to .env:
MONTONIO_ACCESS_KEY=your-access-key MONTONIO_SECRET_KEY=your-secret-key MONTONIO_ENVIRONMENT=sandbox
Run the migrations and sync methods from the Montonio API:
php artisan migrate php artisan montonio:sync-methods
Configuration
Publish the config file manually (the install command does this automatically):
php artisan vendor:publish --tag=montonio-config
Environment variables
| Variable | Default | Description |
|---|---|---|
MONTONIO_ACCESS_KEY |
'' |
Your Montonio API access key |
MONTONIO_SECRET_KEY |
'' |
Your Montonio API secret key |
MONTONIO_ENVIRONMENT |
sandbox |
API environment (sandbox or production) |
MONTONIO_TIMEOUT |
30 |
HTTP request timeout in seconds |
MONTONIO_MIGRATIONS_ENABLED |
true |
Load the package's migrations |
MONTONIO_SYNC_COMMANDS_ENABLED |
true |
Register the montonio:sync-methods command |
MONTONIO_CACHE_ENABLED |
true |
Enable caching for payment/shipping methods |
MONTONIO_CACHE_TTL |
3600 |
Cache time-to-live in seconds |
MONTONIO_WEBHOOK_ROUTE |
/montonio/webhook |
Webhook endpoint path |
MONTONIO_WEBHOOK_QUEUE |
null |
Queue name for async webhook processing |
Usage
Facade
Access the Montonio API clients through the Montonio facade:
use Veltix\LaravelMontonio\Facades\Montonio; // Payments API $paymentsClient = Montonio::payments(); // Shipping API $shippingClient = Montonio::shipping(); // Webhook verifier $webhookVerifier = Montonio::webhooks();
Syncing methods
Sync payment and shipping methods from the Montonio API:
# Sync both payment and shipping methods php artisan montonio:sync-methods # Sync only payment methods php artisan montonio:sync-methods --payments-only # Sync only shipping methods php artisan montonio:sync-methods --shipping-only
Querying methods
Use the PaymentMethod and ShippingMethod Eloquent models to query synced methods:
use Veltix\LaravelMontonio\Models\PaymentMethod; use Veltix\LaravelMontonio\Models\ShippingMethod; // Get all active payment methods $methods = PaymentMethod::active()->get(); // Get all active shipping methods $methods = ShippingMethod::active()->get();
For cached queries, use the MethodCacheService:
use Veltix\LaravelMontonio\Services\MethodCacheService; $cache = app(MethodCacheService::class); $paymentMethods = $cache->paymentMethods(); $shippingMethods = $cache->shippingMethods();
Webhooks
The package automatically registers a POST route at /montonio/webhook (configurable via MONTONIO_WEBHOOK_ROUTE). The controller detects whether the incoming webhook is a payment or shipping notification and dispatches the appropriate event.
Events
Payment webhook:
| Event | Payload |
|---|---|
PaymentWebhookReceived |
PaymentWebhookPayload |
Shipping webhooks:
| Event | Payload |
|---|---|
ShipmentRegistered |
ShippingWebhookPayload |
ShipmentRegistrationFailed |
ShippingWebhookPayload |
ShipmentStatusUpdated |
ShippingWebhookPayload |
ShipmentLabelsCreated |
ShippingWebhookPayload |
LabelFileReady |
ShippingWebhookPayload |
LabelFileCreationFailed |
ShippingWebhookPayload |
All events live in the Veltix\LaravelMontonio\Events namespace.
Listening to events
Register listeners in your EventServiceProvider or use Laravel's event discovery:
use Veltix\LaravelMontonio\Events\PaymentWebhookReceived; use Veltix\LaravelMontonio\Events\ShipmentStatusUpdated; class EventServiceProvider extends ServiceProvider { protected $listen = [ PaymentWebhookReceived::class => [ HandlePaymentWebhook::class, ], ShipmentStatusUpdated::class => [ HandleShipmentUpdate::class, ], ]; }
Each event has a public PaymentWebhookPayload|ShippingWebhookPayload $payload property containing the verified webhook data.
Queued webhooks
To process webhooks asynchronously, set the queue name:
MONTONIO_WEBHOOK_QUEUE=montonio
When set, the controller immediately responds with 202 and dispatches a ProcessMontonioWebhook job onto the specified queue. The job verifies the token and fires the appropriate event.
Webhook middleware
Add middleware to the webhook route via the config:
// config/montonio.php 'webhooks' => [ 'middleware' => ['api', App\Http\Middleware\VerifyIpWhitelist::class], ],
Customization
Custom models
By default the package provides PaymentMethod and ShippingMethod Eloquent models backed by their own migrations. If your application already has payment or shipping method tables, you can swap the models the package uses at runtime.
- Disable the package's migrations and sync commands:
MONTONIO_MIGRATIONS_ENABLED=false MONTONIO_SYNC_COMMANDS_ENABLED=false
- Point the config at your own models:
// config/montonio.php 'models' => [ 'payment_method' => App\Models\PaymentMethod::class, 'shipping_method' => App\Models\ShippingMethod::class, ],
The sync actions, cache service, and everything else in the package will use your models instead.
Extending the default models
If you only need to add relationships or change the table name, extend the package's models instead of writing your own from scratch:
use Veltix\LaravelMontonio\Models\PaymentMethod as BasePaymentMethod; class PaymentMethod extends BasePaymentMethod { protected $table = 'my_payment_methods'; public function orders(): HasMany { return $this->hasMany(Order::class); } }
Then register it in the config:
'models' => [ 'payment_method' => App\Models\PaymentMethod::class, ],
Disabling the sync command
Set MONTONIO_SYNC_COMMANDS_ENABLED=false to prevent the montonio:sync-methods command from being registered. This is useful when you want to write your own sync logic while still using the rest of the package.
Caching
The MethodCacheService caches active payment and shipping methods using Laravel's cache system. Configure caching with:
MONTONIO_CACHE_ENABLED=true MONTONIO_CACHE_TTL=3600
Set MONTONIO_CACHE_ENABLED=false to disable caching and query the database directly.
Cache keys used: montonio:payment_methods and montonio:shipping_methods.
Custom HTTP client
The package uses Guzzle by default. To use a custom PSR-18 HTTP client, bind the PSR interfaces in a service provider:
use Psr\Http\Client\ClientInterface; use Psr\Http\Message\RequestFactoryInterface; use Psr\Http\Message\StreamFactoryInterface; $this->app->bind(ClientInterface::class, fn () => new MyCustomClient()); $this->app->bind(RequestFactoryInterface::class, fn () => new MyRequestFactory()); $this->app->bind(StreamFactoryInterface::class, fn () => new MyStreamFactory());
Testing
composer test
License
MIT