shibin / laravel-quiqup
Laravel package for integrating the Quiqup delivery API (create, track, and manage orders)
v1.0.0
2026-01-08 05:33 UTC
Requires
- php: ^8.0
- guzzlehttp/guzzle: ^7.0
- illuminate/http: ^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/support: ^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/validation: ^8.0|^9.0|^10.0|^11.0|^12.0
README
A Laravel package to integrate with the Quiqup Delivery API, allowing you to create orders, retrieve orders, download AWB labels, and mark orders as ready for collection.
This package wraps the Quiqup REST API into a clean Laravel Facade for fast and consistent integration.
Requirements
- PHP 8.1+
- Laravel 10 / 11
- Quiqup Partner Account (Sandbox or Production)
- Quiqup API Key
Installation
Install the package via Composer:
composer require shibin/quiqup ## Configuration ### Publish Configuration File ```bash php artisan vendor:publish --tag=quiqup-config ## Environment Variables Add the following values to your `.env` file: ```env QUIQUP_CLIENT_ID= QUIQUP_CLIENT_SECRET=your_api_key_here QUIQUP_ENV=Environment: 'staging' or 'production'