PHPackages                             orhanozyalcin/sendeo-client-laravel - 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. orhanozyalcin/sendeo-client-laravel

ActiveLibrary[API Development](/categories/api)

orhanozyalcin/sendeo-client-laravel
===================================

A Laravel-optimized PHP client library for Sendeo API integration.

v1.3.7(1y ago)115MITPHPPHP ^8.0

Since Nov 15Pushed 1y ago1 watchersCompare

[ Source](https://github.com/OrhanOzyalcin/SendeoClientLaravel)[ Packagist](https://packagist.org/packages/orhanozyalcin/sendeo-client-laravel)[ RSS](/packages/orhanozyalcin-sendeo-client-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (16)Used By (0)

**Sendeo Client Laravel**
=========================

[](#sendeo-client-laravel)

**A Laravel-optimized PHP client library for Sendeo API integration.**
This library simplifies communication with Sendeo API, providing methods for tracking, canceling deliveries, and more.

---

**Installation**
----------------

[](#installation)

To install this package, run the following command in your Laravel project:

```
composer require orhanozyalcin/sendeo-client-laravel
```

---

**Configuration**
-----------------

[](#configuration)

This package uses Laravel's **Package Discovery**, so no manual configuration is required. However, ensure the following is properly set up:

Publishing the Config File
--------------------------

[](#publishing-the-config-file)

After installing the package, publish the configuration file to your Laravel project:

```
php artisan vendor:publish --tag=sendeo_config
```

### **Service Provider**

[](#service-provider)

1. The `SendeoServiceProvider` is automatically registered.

### **Facade**

[](#facade)

1. The `Sendeo` alias is automatically added for easy usage.

\### **Example .env Configuration**

```
# Maybe Use For Test not Tested:
#SENDEO_API_ID="TEST"
#SENDEO_API_PASSWORD="TesT.43e54"

# Live
SENDEO_API_ID=YourProductionApiID
SENDEO_API_PASSWORD=YourProductionApiPassword
SENDEO_API_URL=https://api.sendeo.com.tr

# Test
SENDEO_API_TEST_URL=https://api-dev.sendeo.com.tr
SENDEO_TEST_MODE=true
```

---

**Usage**
---------

[](#usage)

### **1. Using the Facade**

[](#1-using-the-facade)

You can interact with the Sendeo API using the `Sendeo` facade:

```
use Sendeo;
use SendeoClientLaravel\Models\TrackDelivery;

// Example: Track a delivery
$trackDelivery = new TrackDelivery('TRACK123456', 'REF123456');
$response = Sendeo::trackDelivery('auth-token', $trackDelivery);

dd($response);
```

---

### **2. Using the Service Container**

[](#2-using-the-service-container)

Alternatively, you can resolve the `SendeoClient` service from the container:

```
use SendeoClientLaravel\Models\CancelDelivery;

$sendeoClient = app('sendeo-client');

// Example: Cancel a delivery
$cancelDelivery = new CancelDelivery('TRACK123456', 'REF123456');
$response = $sendeoClient->cancelDelivery('auth-token', $cancelDelivery);

dd($response);
```

---

**Features**
------------

[](#features)

### **Supported API Methods**

[](#supported-api-methods)

#### 1. Authentication

[](#1-authentication)

```
use SendeoClientLaravel\Models\LoginAES;

$loginUser = new LoginAES('TestUserName', 'TestPassWord');
$response = Sendeo::login($loginUser);
```

#### **2. Track a Delivery**

[](#2-track-a-delivery)

```
use SendeoClientLaravel\Models\TrackDelivery;

$trackDelivery = new TrackDelivery('TRACK123456', 'REF123456');
$response = Sendeo::trackDelivery('auth-token', $trackDelivery);
```

#### **3. Cancel a Delivery**

[](#3-cancel-a-delivery)

```
use SendeoClientLaravel\Models\CancelDelivery;

$cancelDelivery = new CancelDelivery('TRACK123456', 'REF123456');
$response = Sendeo::cancelDelivery('auth-token', $cancelDelivery);
```

#### **4. Set a Delivery**

[](#4-set-a-delivery)

```
Coming Soon!
```

---

**Requirements**
----------------

[](#requirements)

- **PHP:** ^8.0
- **Laravel:** ^9.0 | ^10.0
- **Sendeo API Access**

---

**Contribution**
----------------

[](#contribution)

Contributions are welcome! Please fork this repository, make your changes, and submit a pull request.

---

**License**
-----------

[](#license)

This package is licensed under the MIT License. See the LICENSE file for more details.

---

**Author**
----------

[](#author)

**Orhan Özyalçın**

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance40

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~3 days

Recently: every ~10 days

Total

14

Last Release

501d ago

### Community

Maintainers

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

---

Top Contributors

[![OrhanOzyalcin](https://avatars.githubusercontent.com/u/66219101?v=4)](https://github.com/OrhanOzyalcin "OrhanOzyalcin (24 commits)")

### Embed Badge

![Health badge](/badges/orhanozyalcin-sendeo-client-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/orhanozyalcin-sendeo-client-laravel/health.svg)](https://phpackages.com/packages/orhanozyalcin-sendeo-client-laravel)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

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