PHPackages                             matyo-17/lalamove - 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. matyo-17/lalamove

ActiveLibrary[API Development](/categories/api)

matyo-17/lalamove
=================

Lalamove SDK

v1.0.1(6mo ago)011MITPHPPHP &gt;=8.0

Since Oct 7Pushed 6mo agoCompare

[ Source](https://github.com/matyo-17/lalamove-sdk)[ Packagist](https://packagist.org/packages/matyo-17/lalamove)[ RSS](/packages/matyo-17-lalamove/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

Lalamove PHP SDK
================

[](#lalamove-php-sdk)

PHP SDK for Lalamove API

Minimum Requirements
--------------------

[](#minimum-requirements)

- [php8.0+](https://www.php.net/downloads.php)
- [composer](https://getcomposer.org/download/)

Installation
------------

[](#installation)

```
composer require matyo-17/lalamove
```

Examples
--------

[](#examples)

```
require __DIR__.'/vendor/autoload.php';

use Carbon\Carbon;
use Matyo17\Lalamove\Lalamove;
use Matyo17\Lalamove\Coordinates;
use Matyo17\Lalamove\DeliveryDetails;
use Matyo17\Lalamove\DeliveryStops;
use Matyo17\Lalamove\Enums\Services;

// Initialise
$lalamove = new Lalamove(
    api_key: 'api_key',
    api_secret: 'api_secret',
    sandbox: false,
    market: 'MY'
);

// Make a quotation
$from = new DeliveryStops(
    coordinates: Coordinates::fromString("3.1427780826742193, 101.70046857079332"),
    address: "Warisan Merdeka Tower, Precinct, Kuala Lumpur City Centre, 50118 Kuala Lumpur, Federal Territory of Kuala Lumpur"
);
$to = new DeliveryStops(
    coordinates: Coordinates::fromString("3.1578402961856846, 101.71218381851456"),
    address: "Petronas Twin Tower, Kuala Lumpur City Centre, 50088 Kuala Lumpur, Federal Territory of Kuala Lumpur"
);
$quotation = $lalamove->makeQuotation(Services::CAR, [$from, $to], Carbon::now()->addHours());

// place an order
$sender = new DeliveryDetails(
    stop_id: $quotation['stops'][0]['stopId'],
    name: "Sender",
    phone: "+60123456789"
);
$receiver = new DeliveryDetails(
    stop_id: $quotation['stops'][1]['stopId'],
    name: "Receiver",
    phone: "+60123456789",
);
$order = $lalamove->placeOrder($quotation['quotationId'], $sender, [$receiver], true);

// get order details
$order_details = $lalamove->getOrder($order['orderId']);

// add priority fee
$priority_fee = $lalamove->addPriorityFee($order['orderId'], "10.00");

// get city info
$cities = $lalamove->getCityInfo();

// add webhook
$webhook = $lalamove->setWebhook("https://webhook.site/32e3c3d7-2175-4c4a-87d3-cd0c84a2bb5d");
```

###  Health Score

32

—

LowBetter than 71% of packages

Maintenance70

Regular maintenance activity

Popularity5

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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 ~6 days

Total

2

Last Release

208d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5ba92f21dc642c929d0d1fc740f3be8d0844142a54cfb3a3f32790214b611eb7?d=identicon)[matyo-17](/maintainers/matyo-17)

### Embed Badge

![Health badge](/badges/matyo-17-lalamove/health.svg)

```
[![Health](https://phpackages.com/badges/matyo-17-lalamove/health.svg)](https://phpackages.com/packages/matyo-17-lalamove)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M647](/packages/sylius-sylius)[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[temporal/sdk

Temporal SDK

4002.2M18](/packages/temporal-sdk)[wheelpros/fitment-platform-api

Magento 2 (Open Source)

12.1k1.2k](/packages/wheelpros-fitment-platform-api)[ashallendesign/laravel-exchange-rates

A wrapper package for interacting with the exchangeratesapi.io API.

485677.8k](/packages/ashallendesign-laravel-exchange-rates)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)

PHPackages © 2026

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