shibin/laravel-quiqup

Laravel package for integrating the Quiqup delivery API (create, track, and manage orders)

Maintainers

Package info

github.com/cpshibinoppo/laravel-quiqup

pkg:composer/shibin/laravel-quiqup

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-01-08 05:33 UTC

This package is auto-updated.

Last update: 2026-03-08 05:57:11 UTC


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'