PHPackages                             dansmaculotte/colissimo-php - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. dansmaculotte/colissimo-php

ActiveLibrary[HTTP &amp; Networking](/categories/http)

dansmaculotte/colissimo-php
===========================

Colissimo Web Services PHP library

1.3.0(4y ago)45.2k↓81.5%6[1 issues](https://github.com/dansmaculotte/colissimo-php/issues)MITPHPPHP ^7.2|^8.1CI failing

Since Jul 31Pushed 4y ago3 watchersCompare

[ Source](https://github.com/dansmaculotte/colissimo-php)[ Packagist](https://packagist.org/packages/dansmaculotte/colissimo-php)[ Docs](https://github.com/dansmaculotte/colissimo-php)[ RSS](/packages/dansmaculotte-colissimo-php/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (5)Versions (6)Used By (0)

Colissimo Web Services PHP SDK
==============================

[](#colissimo-web-services-php-sdk)

[![Latest Version](https://camo.githubusercontent.com/72c7f9a1a2d97cd8af961ce7e005cbc20bf8b8764b9128628b3a2f80667d2c12/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64616e736d6163756c6f7474652f636f6c697373696d6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dansmaculotte/colissimo-php)[![Total Downloads](https://camo.githubusercontent.com/de15e8951d5201bed3123e73ac973a90aeada337c55d5a19f68c695431548012/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64616e736d6163756c6f7474652f636f6c697373696d6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dansmaculotte/colissimo-php)[![Build Status](https://camo.githubusercontent.com/4ad04e2ac9315614db5687ead24f5f0d84b989c5f84815a920a30e783e0bea10/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f64616e736d6163756c6f7474652f636f6c697373696d6f2d7068702f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/dansmaculotte/colissimo-php)[![Quality Score](https://camo.githubusercontent.com/89cbf8e0cd046b29904851dc1a624ad2eea6d945b201003da1bf491ba9db537e/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f64616e736d6163756c6f7474652f636f6c697373696d6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/dansmaculotte/colissimo-php)[![Code Coverage](https://camo.githubusercontent.com/bcd42c321efbc559bf45dbe0ab8e8c1396389bd79233958d24fdb29fe2ce1d70/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6769746875622f64616e736d6163756c6f7474652f636f6c697373696d6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://coveralls.io/github/dansmaculotte/colissimo-php)

> This library aims to facilitate the usage of Colissimo Web Services

Services
--------

[](#services)

- [Delivery Choice](https://www.colissimo.entreprise.laposte.fr/system/files/imagescontent/docs/spec_ws_livraison.pdf)
- [Parcel Tracking](https://www.colissimo.entreprise.laposte.fr/system/files/imagescontent/docs/spec_ws_suivi.pdf)
- [Postage (ToDo)](https://www.colissimo.entreprise.laposte.fr/system/files/imagescontent/docs/spec_ws_affranchissement.pdf)

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

[](#installation)

### Requirements

[](#requirements)

- PHP 7.2
- Json Extension
- SimpleXML Extension

You can install the package via composer:

```
composer require dansmaculotte/colissimo-php
```

Usage
-----

[](#usage)

### Web Services Status

[](#web-services-status)

```
use DansMaCulotte\Colissimo\Colissimo;

try {
    $colissimo = new Colissimo();
    $colissimo->checkWebServiceStatus();
} catch (\Exception $e) {
    print_r($e);
}
```

### Delivery Choice

[](#delivery-choice)

#### Find pickup points

[](#find-pickup-points)

```
use DansMaCulotte\Colissimo\DeliveryChoice;

$delivery = new DeliveryChoice(
    [
        'accountNumber' => COLISSIMO_LOGIN,
        'password' => COLISSIMO_PASSWORD,
    ]
);

$result = $delivery->findPickupPoints(
    'Caen',
    '14000',
    'FR',
    Carbon::now()->format('d/m/Y'),
    [
        'address' => '7 rue Mélingue',
    ]
);

print_r($result);
```

#### Find pickup point by ID

[](#find-pickup-point-by-id)

```
use DansMaCulotte\Colissimo\DeliveryChoice;

$delivery = new DeliveryChoice(
    [
        'accountNumber' => COLISSIMO_LOGIN,
        'password' => COLISSIMO_PASSWORD,
    ]
);

$result = $delivery->findPickupPointByID(
    '149390',
    Carbon::now()->format('d/m/Y')
);

print_r($result);
```

### Parcel Tracking

[](#parcel-tracking)

#### Get parcel status by ID

[](#get-parcel-status-by-id)

```
use DansMaCulotte\Colissimo\ParcelTracking;

$parcelTracking = new ParcelTracking(
    [
        'accountNumber' => COLISSIMO_LOGIN,
        'password' => COLISSIMO_PASSWORD,
    ]
);

$result = $parcelTracking->getStatusByID('111111111');

print_r($result);
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 95.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 ~239 days

Total

5

Last Release

1562d ago

PHP version history (2 changes)1.0.0PHP ^7.2

1.3.0PHP ^7.2|^8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/498465?v=4)[Gaël Reyrol](/maintainers/GaelReyrol)[@gaelreyrol](https://github.com/gaelreyrol)

![](https://www.gravatar.com/avatar/777575bd441b3393f38a0865d5365a071c18e0989b5a4c9fc90426217876085a?d=identicon)[romain-dmc](/maintainers/romain-dmc)

---

Top Contributors

[![gaelreyrol](https://avatars.githubusercontent.com/u/498465?v=4)](https://github.com/gaelreyrol "gaelreyrol (21 commits)")[![rtouze](https://avatars.githubusercontent.com/u/917039?v=4)](https://github.com/rtouze "rtouze (1 commits)")

---

Tags

colissimophpcolissimocolissimo-webservices

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/dansmaculotte-colissimo-php/health.svg)

```
[![Health](https://phpackages.com/badges/dansmaculotte-colissimo-php/health.svg)](https://phpackages.com/packages/dansmaculotte-colissimo-php)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.2k532.1M2.5k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[illuminate/http

The Illuminate Http package.

11937.2M6.5k](/packages/illuminate-http)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[dreamfactory/df-core

DreamFactory(tm) Core Components

1652.0k38](/packages/dreamfactory-df-core)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

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