PHPackages                             smart-dato/eushipments - 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. smart-dato/eushipments

ActiveLibrary[API Development](/categories/api)

smart-dato/eushipments
======================

EuShipments Laravel SDK

0.0.3(6mo ago)0869↓30%[6 PRs](https://github.com/smart-dato/eushipments/pulls)MITPHPPHP ^8.2|^8.3|^8.4CI passing

Since Aug 22Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/smart-dato/eushipments)[ Packagist](https://packagist.org/packages/smart-dato/eushipments)[ Docs](https://github.com/smart-dato/eushipments)[ GitHub Sponsors](https://github.com/SmartDato)[ RSS](/packages/smart-dato-eushipments/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (15)Versions (8)Used By (0)

EuShipments Laravel SDK
=======================

[](#eushipments-laravel-sdk)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f3225069f2405324d0a64486f3b944c48873f87b48bc10a9fb341b668a37eb4c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736d6172742d6461746f2f6575736869706d656e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/smart-dato/eushipments)[![GitHub Tests Action Status](https://camo.githubusercontent.com/384c9a87db8ac8b549d8eba35459c86d2a0db136aa42439ee1f613cfc3a9894b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736d6172742d6461746f2f6575736869706d656e74732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/smart-dato/eushipments/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/5fed88458ecb25f4aa8bc6f095e2f7c97e406fdd0ead9005fd0704a6a1bd97cf/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736d6172742d6461746f2f6575736869706d656e74732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/smart-dato/eushipments/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/e587a7d9437c9f751c86909617fce4e667d7f72742e6c8eca26387ab52da58bd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736d6172742d6461746f2f6575736869706d656e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/smart-dato/eushipments)

This is our EuShipments Laravel SDK. API documentation can be found [here](https://documenter.getpostman.com/view/26992907/2s93Y2S2Q8)

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

[](#installation)

You can install the package via composer:

```
composer require smart-dato/eushipments
```

You can publish the config file with:

```
php artisan vendor:publish --tag="eushipments-config"
```

This is the contents of the published config file:

```
return [
];
```

Usage
-----

[](#usage)

```
$connector = new SmartDato\EuShipments\EuShipmentsConnector();

$connector->withMockClient(new \Saloon\Http\Faking\MockClient([
    \SmartDato\EuShipments\Requests\Shipment\CreateShipmentRequest::class => \Saloon\Http\Faking\MockResponse::fixture('shipment.create.success'),
]));

$response = $connector->send(
    new \SmartDato\EuShipments\Requests\Shipment\CreateShipmentRequest(
        new \SmartDato\EuShipments\Data\ShipmentData(
            senderId: 1234,
            courierId: 999,
            waybillAvailableDate: now(),
            serviceName: \SmartDato\EuShipments\Enums\Service::crossborder,
            recipient: new \SmartDato\EuShipments\Data\AddressData(
                name: "Nikol Kubas",
                countryIsoCode: "PL",
                streetName: "Tomkowa 35A",
                buildingNumber: "35A",
                addressText: "Tomkowa 35A",
                phoneNumber: "664351156",
                cityName: "Tomkowa",
                zipCode: "58-140",
                contactPerson: "Nikol Kubas",
                email: "nikol.anna.kubas@onet.pl"
            ), awb: new \SmartDato\EuShipments\Data\AirWaybillData(
            parcels: 1,
            envelopes: 0,
            totalWeight: 0.7,
            openPackage: false,
            saturdayDelivery: false,
            referenceNumber: 'ex-123456789',
            products: "Clothes",
            bankRepayment: 0,
            shipmentPayer: \SmartDato\EuShipments\Enums\Payer::sender,
            declaredValue: 0,
            otherRepayment: null,
            observations: null,
            fragile: true,
            productsInfo: "Clothes",
            piecesInPack: 1
        )
    ))
);
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [SmartDato](https://github.com/smart-dato)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

44

—

FairBetter than 91% of packages

Maintenance85

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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

Total

3

Last Release

185d ago

PHP version history (2 changes)0.0.1PHP ^8.2

0.0.3PHP ^8.2|^8.3|^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/c3006db55caec62526937fa2d941da32fc5e69e2ca86a52e87c8046da5958d82?d=identicon)[smart-dato](/maintainers/smart-dato)

---

Top Contributors

[![tschigo](https://avatars.githubusercontent.com/u/344100?v=4)](https://github.com/tschigo "tschigo (6 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")[![michael-tscholl](https://avatars.githubusercontent.com/u/178569346?v=4)](https://github.com/michael-tscholl "michael-tscholl (5 commits)")

---

Tags

laravelSmartDatoeushipments

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/smart-dato-eushipments/health.svg)

```
[![Health](https://phpackages.com/badges/smart-dato-eushipments/health.svg)](https://phpackages.com/packages/smart-dato-eushipments)
```

###  Alternatives

[simplestats-io/laravel-client

Client for SimpleStats!

4515.5k](/packages/simplestats-io-laravel-client)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[codebar-ag/laravel-zammad

Zammad integration with Laravel

106.1k](/packages/codebar-ag-laravel-zammad)

PHPackages © 2026

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