PHPackages                             yax/laravel-shippy-pro-connector - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. yax/laravel-shippy-pro-connector

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

yax/laravel-shippy-pro-connector
================================

Shippypro Connector for Laravel

351PHPCI failing

Since Oct 31Pushed 6y ago1 watchersCompare

[ Source](https://github.com/piwni/laravel-shippypro-client)[ Packagist](https://packagist.org/packages/yax/laravel-shippy-pro-connector)[ RSS](/packages/yax-laravel-shippy-pro-connector/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Shippypro Connector
===================

[](#shippypro-connector)

Shippypro connector is a simple PHP library that allows to integrate Shippypro into your project. You can check carrier rates and ship orders.

Add folowing line to config/app.php to providers array

```
'providers' => [
    ...
    \yax\ShippyProConnector\ShippyproServiceProvider::class
],
```

Then you have to publish configuration. Execute command

```
    php artisan vendor:publish
```

After that you have to configure your Shippypro API key in config/shippypro.php

```
    /* This example uses env file but you can paste in this place your API key */
    'api_key' => env('SHIPPYPRO_API', null),
```

This is an example integration

```
$sender = new ShippyproAddress('Jan Kowalski', '/', 'Prosta 20', '/', 'Wrocław', 'DS', '50-419', 'PL', '445544544', 'jankowalski@gmail.com');
$recivier = new ShippyproAddress('Jan Kowalski', '/', 'Prosta 20', '/', 'Wrocław', 'DS', '50-419', 'PL', '445544544', 'jankowalski@gmail.com');
$parcel = new ShippyproParcel('30', '20', '20', '10');
$shipment = new ShippyproShipment(30.00, 'Description');
$shipment->to_address($recivier);
$shipment->from_address($sender);
$shipment->addParcel($parcel);
$array = $shipment->getRates();
$rate = $array->searchByKey('carrier_id', 1081);
$shipment->setTransactionId(2349);
if ($rate) {
    $shipment->setRate($rate);
    $order = $shipment->purchase();
}
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

[![piwni](https://avatars.githubusercontent.com/u/6146576?v=4)](https://github.com/piwni "piwni (11 commits)")

### Embed Badge

![Health badge](/badges/yax-laravel-shippy-pro-connector/health.svg)

```
[![Health](https://phpackages.com/badges/yax-laravel-shippy-pro-connector/health.svg)](https://phpackages.com/packages/yax-laravel-shippy-pro-connector)
```

###  Alternatives

[lochmueller/autoloader

Automatic components loading of ExtBase extensions to get more time for coffee in the company ;) This ext is not a PHP SPL autoloader or class loader - it is better! Loads CommandController, Xclass, Hooks, FlexForms, Slots, TypoScript, TypeConverter, BackendLayouts and take care of createing needed templates, TCA configuration or translations at the right location.

19364.9k5](/packages/lochmueller-autoloader)[ircmaxell/php-types

A PHP CFG Type Inference / Reconstruction Engine

361.0k](/packages/ircmaxell-php-types)

PHPackages © 2026

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