PHPackages                             codeboxr/ecourier-courier - 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. codeboxr/ecourier-courier

ActiveLibrary[API Development](/categories/api)

codeboxr/ecourier-courier
=========================

Bangladeshi ecourier service api package

v1.0.1(3y ago)85786MITPHPPHP ^7.2|^7.3|^8.0|^8.1

Since Oct 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/codeboxrcodehub/ecourier-courier)[ Packagist](https://packagist.org/packages/codeboxr/ecourier-courier)[ RSS](/packages/codeboxr-ecourier-courier/feed)WikiDiscussions main Synced 1mo ago

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

 [![](https://camo.githubusercontent.com/3f279e149f7f85251808fbe9fd0f477d6374b18f842eea1f55e492ff69930603/68747470733a2f2f65636f75726965722e636f6d2e62642f77702d636f6e74656e742f7468656d65732f65636f75726965722d322e302f696d616765732f6c6f676f2e737667)](https://camo.githubusercontent.com/3f279e149f7f85251808fbe9fd0f477d6374b18f842eea1f55e492ff69930603/68747470733a2f2f65636f75726965722e636f6d2e62642f77702d636f6e74656e742f7468656d65732f65636f75726965722d322e302f696d616765732f6c6f676f2e737667)

Ecourier parcel service php/laravel package
===========================================

[](#ecourier-parcel-service-phplaravel-package)

[![](https://camo.githubusercontent.com/35e1507b85fa07e2bad7d1dd0cf24a6396dbfbc3cfcffa24dcb61dcb8baf6f07/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f6465626f78722f65636f75726965722d636f7572696572)](https://camo.githubusercontent.com/35e1507b85fa07e2bad7d1dd0cf24a6396dbfbc3cfcffa24dcb61dcb8baf6f07/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f6465626f78722f65636f75726965722d636f7572696572)[![](https://camo.githubusercontent.com/bdba82adfc554a0c1f6cbe5ced8eab088f9058b77d9e189a13ceeefc6452dc76/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f636f6465626f78722f65636f75726965722d636f7572696572)](https://camo.githubusercontent.com/bdba82adfc554a0c1f6cbe5ced8eab088f9058b77d9e189a13ceeefc6452dc76/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f636f6465626f78722f65636f75726965722d636f7572696572)

This is a Laravel/PHP package for [Ecourier](https://ecourier.com.bd/) BD Courier System. This package can be used in laravel or without laravel/php projects. You can use this package for headless/rest implementation as well as blade or regular mode development. We created this package while working for a project and thought to made it release for all so that it helps. This package is available as regular php [composer package](https://packagist.org/packages/codeboxr/ecourier-courier).

Features
--------

[](#features)

1. [Fetch Ecourier delivery/store city list](https://github.com/codeboxrcodehub/ecourier-courier#1-get-ecourier-delivery-city-list)
2. [Fetch Ecourier delivery/store thana/upzilla list](https://github.com/codeboxrcodehub/ecourier-courier#2-get-ecourier-delivery-thanaupzilla-list)
3. [Fetch Ecourier delivery/store postcode list](https://github.com/codeboxrcodehub/ecourier-courier#3-get-ecourier-delivery-postcode-list)
4. [Fetch Ecourier delivery/store postcode area list](https://github.com/codeboxrcodehub/ecourier-courier#4-get-ecourier-delivery-postcode-area-list)
5. [Fetch Ecourier delivery/store branch list](https://github.com/codeboxrcodehub/ecourier-courier#5-get-ecourier-branch-list)
6. [Fetch Ecurier delivery package lsit](https://github.com/codeboxrcodehub/ecourier-courier#6-delivery-package-list)
7. [Create parcel](https://github.com/codeboxrcodehub/ecourier-courier#7-create-parcel)
8. [Parcel tracking](https://github.com/codeboxrcodehub/ecourier-courier#8-parcel-tracking)

Requirements
------------

[](#requirements)

- PHP &gt;=7.4
- Laravel &gt;= 6

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

[](#installation)

```
composer require codeboxr/ecourier-courier
```

### vendor publish (config)

[](#vendor-publish-config)

```
php artisan vendor:publish --provider="Codeboxr\\EcourierCourier\\EcourierServiceProvider"
```

After publish config file setup your credential. you can see this in your config directory ecourier.php file

```
"sandbox"    => env("ECOURIER_SANDBOX", false), // for sandbox mode use true
"app_key"    => env("ECOURIER_API_KEY", ""),
"app_secret" => env("ECOURIER_API_SECRET", ""),
"user_id"    => env("ECOURIER_USER_ID", "")

```

### Set .env configuration

[](#set-env-configuration)

```
ECOURIER_SANDBOX=true // for production mode use false
ECOURIER_API_KEY=""
ECOURIER_API_SECRET=""
ECOURIER_USER_ID=""

```

Usage
-----

[](#usage)

### 1. Get ecourier delivery city list

[](#1-get-ecourier-delivery-city-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::area()->city();

```

### 2. Get ecourier delivery thana/upzilla list

[](#2-get-ecourier-delivery-thanaupzilla-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::area()->thana($cityName);

```

### 3. Get ecourier delivery postcode list

[](#3-get-ecourier-delivery-postcode-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::area()->postcode($cityName,$thanaName);

```

### 4. Get ecourier delivery postcode area list

[](#4-get-ecourier-delivery-postcode-area-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::area()->areaList($postcode);

```

### 5. Get ecourier branch list

[](#5-get-ecourier-branch-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::area()->branch();

```

### 6. Delivery package list

[](#6-delivery-package-list)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::order()->packageList();

```

### 7. Create Parcel

[](#7-create-parcel)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::order()->create([
    "ep_name"              => "", // eCommerce Partner (EP) Name
    "pick_contact_person"  => "", // Contact Person of provided ep
    "pick_district"        => "", // Pickup district name
    "pick_thana"           => "", // Pickup thana name
    "pick_hub"             => "", // Pickup branch id
    "pick_union"           => "", // Pickup union
    "pick_address"         => "", // Pickup address
    "pick_mobile"          => "", // Pickup person contact number
    "recipient_name"       => "", // Parcel receiver’s name
    "recipient_mobile"     => "", // Parcel receiver’s mobile number
    "recipient_district"   => "", // Parcel receiver’s district name
    "recipient_city"       => "", // Parcel receiver’s city name
    "recipient_area"       => "", // Parcel receiver’s area name
    "recipient_thana"      => "", // Parcel receiver’s thana name
    "recipient_union"      => "", // Parcel receiver’s union name
    "package_code"         => "", // Package code find in package API
    "recipient_address"    => "", // Parcel receiver’s full address
    "parcel_detail"        => "", // Parcel product or documents details
    "number_of_item"       => "", // Total quantity
    "product_price"        => "", // Receive amount from parcel receiver’s
    "payment_method"       => "", // Cash On Delivery – COD,Point of Sale – POS, Mobile Payment – MPAY, Card Payment – CCRD
    "ep_id"                => "", // Invoice Id
    "actual_product_price" => "" // Parcel product actual price
]);

```

### 8. Parcel tracking

[](#8-parcel-tracking)

```
use Codeboxr\EcourierCourier\Facade\Ecourier;

return Ecourier::order()->tracking($trackingId); //$trackingId find when create parcel they give you ID

```

Contributing
------------

[](#contributing)

Contributions to the Ecourier package are welcome. Please note the following guidelines before submitting your pull request.

- Follow [PSR-4](http://www.php-fig.org/psr/psr-4/) coding standards.
- Read Ecourier API documentations first

License
-------

[](#license)

Ecourier package is licensed under the [MIT License](http://opensource.org/licenses/MIT).

Copyright 2022 [Codeboxr](https://codeboxr.com)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 89.5% of commits — single point of failure

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

Total

2

Last Release

1311d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c156575d5d5e6de7439f10d1bf5d82e14fd556edbd3b467f34ffc3c00ac813b6?d=identicon)[manchumahara](/maintainers/manchumahara)

![](https://www.gravatar.com/avatar/81623abb96d5e8d150207d166effa3d73f4853bb9006cb9df7bef67ff65853bf?d=identicon)[codeboxr](/maintainers/codeboxr)

---

Top Contributors

[![dipudey](https://avatars.githubusercontent.com/u/50619501?v=4)](https://github.com/dipudey "dipudey (17 commits)")[![manchumahara](https://avatars.githubusercontent.com/u/204452?v=4)](https://github.com/manchumahara "manchumahara (2 commits)")

---

Tags

apiecourierecourier-packageecourier-parcel-trackerlaravel-ecourierlaravel-package

### Embed Badge

![Health badge](/badges/codeboxr-ecourier-courier/health.svg)

```
[![Health](https://phpackages.com/badges/codeboxr-ecourier-courier/health.svg)](https://phpackages.com/packages/codeboxr-ecourier-courier)
```

###  Alternatives

[skagarwal/google-places-api

Google Places Api

1913.0M8](/packages/skagarwal-google-places-api)[dcblogdev/laravel-microsoft-graph

A Laravel Microsoft Graph API (Office365) package

168285.5k1](/packages/dcblogdev-laravel-microsoft-graph)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1344.8k1](/packages/jasara-php-amzn-selling-partner-api)[grantholle/powerschool-api

A Laravel package to make interacting with PowerSchool less painful.

1715.6k1](/packages/grantholle-powerschool-api)

PHPackages © 2026

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