PHPackages                             answear/mwl-pickup-point-bundle - 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. answear/mwl-pickup-point-bundle

ActiveSymfony-bundle[API Development](/categories/api)

answear/mwl-pickup-point-bundle
===============================

API Client for MwlBundle

3.0.0(1w ago)04.1k↓29.7%MITPHPPHP ^8.3|^8.4

Since Mar 18Pushed 1w ago2 watchersCompare

[ Source](https://github.com/answear/mwl-pickup-point-bundle)[ Packagist](https://packagist.org/packages/answear/mwl-pickup-point-bundle)[ RSS](/packages/answear-mwl-pickup-point-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (24)Versions (6)Used By (0)

```
 @@@@@@@@&  @@@@@@@@   @@@@@@@@  @@@   @@@   @@@  &@@@@@@@@  @@@@@@@@@   @@@@@@
@@@/   @@@  @@@   @@@ (@@   #@@  @@@   @@@   @@@  @@@    @@@ @@@   @@@* @@@
@@@/   @@@  @@@   @@@  @@@@      @@@   @@@   @@@  @@@  @@@@  @@@   @@@* @@@
@@@/   @@@  @@@   @@@     @@@@   @@@   @@@   @@@  @@@@@@     @@@   @@@* @@@
@@@/   @@@  @@@   @@@ @@@   @@@@ @@@   @@@   @@@  @@@    @@@ @@@   @@@* @@@
,@@@   @@@  @@@   @@@ @@@%  #@@@ @@@   @@@   @@@  @@@   @@@. @@@   @@@* @@@
 %@@@@@@@@  @@@   @@@  /@@@@@@.   @@@@@@/@@@@@@    @@@@@@@    @@@@@@@@* @@@  @@@

```

MWL (Meest + Nova Poshta) pickup point bundle
=============================================

[](#mwl-meest--nova-poshta-pickup-point-bundle)

MWL integration for Symfony.
Documentation of the API can be found here:

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

[](#installation)

- install with Composer

```
composer require answear/mwl-pickup-point-bundle

```

`Answear\MwlBundle\AnswearMwlBundle::class => ['all' => true],`
should be added automatically to your `config/bundles.php` file by Symfony Flex.

Setup
-----

[](#setup)

```
# config/packages/answear_mwl.yaml
answear_mwl:
    partnerKey: 'partner-key'
    secretKey: 'secret-key'
```

config will be passed to `\Answear\MwlBundle\ConfigProvider` class.

Usage
-----

[](#usage)

### Get pickup points

[](#get-pickup-points)

```
use Answear\MwlBundle\Command\GetPickupPoints;
use Answear\MwlBundle\Request\GetPickupPointsRequest;

/** @var GetPickupPoints $getPickupPointsCommand */
$getPickupPointsResponse = $getPickupPointsCommand->getPickupPoints(new GetPickupPointsRequest());
```

### Get pickup points by carriers and country codes

[](#get-pickup-points-by-carriers-and-country-codes)

```
use Answear\MwlBundle\Command\GetPickupPointsByCarriersAndCountryCodes;
use Answear\MwlBundle\Enum\CarrierEnum;
use Answear\MwlBundle\Enum\CountryCodeEnum;
use Answear\MwlBundle\Request\GetPickupPointsByCarriersAndCountryCodesRequest;
use Answear\MwlBundle\Request\Struct\CarrierAndCountryCode;

$requestData = [
    new CarrierAndCountryCode(
        CarrierEnum::Meest,
        CountryCodeEnum::Ukraine
    ),
]

/** @var GetPickupPointsByCarriersAndCountryCodes $getPickupPointsCommand */
$getPickupPointsResponse = $getPickupPointsCommand->getPickupPointsByCarriersAndCountryCodesRequest(
    new GetPickupPointsByCarriersAndCountryCodesRequest($requestData)
);
```

### Get cities

[](#get-cities)

```
use Answear\MwlBundle\Command\GetCities;
use Answear\MwlBundle\Request\GetCitiesRequest;

/** @var GetCities $getCitiesCommand */
$getCitiesResponse = $getCitiesCommand->getCities(new GetCitiesRequest());
```

Final notes
-----------

[](#final-notes)

Feel free to open pull requests with new features, improvements or bug fixes. The Answear team will be grateful for any comments.

###  Health Score

51

—

FairBetter than 95% of packages

Maintenance98

Actively maintained with recent releases

Popularity22

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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 ~115 days

Total

5

Last Release

12d ago

Major Versions

1.0.0 → 2.0.02025-05-09

2.2.0 → 3.0.02026-06-22

PHP version history (2 changes)1.0.0PHP ^8.2|^8.3|^8.4

3.0.0PHP ^8.3|^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/09395def7b7f6c5cfa2cd4b2a115036b9b0c007c16edc114071ddab8b2505f34?d=identicon)[malarzm](/maintainers/malarzm)

---

Top Contributors

[![lukasz-falda](https://avatars.githubusercontent.com/u/55883656?v=4)](https://github.com/lukasz-falda "lukasz-falda (4 commits)")[![yekovalenkoa](https://avatars.githubusercontent.com/u/152966920?v=4)](https://github.com/yekovalenkoa "yekovalenkoa (2 commits)")[![konradkozaczenko](https://avatars.githubusercontent.com/u/57705320?v=4)](https://github.com/konradkozaczenko "konradkozaczenko (1 commits)")[![ropczan](https://avatars.githubusercontent.com/u/24248440?v=4)](https://github.com/ropczan "ropczan (1 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/answear-mwl-pickup-point-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/answear-mwl-pickup-point-bundle/health.svg)](https://phpackages.com/packages/answear-mwl-pickup-point-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M738](/packages/sylius-sylius)[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k51.2M339](/packages/api-platform-core)[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M574](/packages/shopware-core)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

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