answear / econt-pickup-point-bundle
API Client for EcontBundle
Installs: 10 964
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.2
- ext-json: *
- guzzlehttp/guzzle: ^6.0|^7.0
- symfony/http-kernel: ^6.0|^7.0
- symfony/serializer: ^6.0|^7.0
- webmozart/assert: ^1.11
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64
- phpro/grumphp: ^2.8
- phpstan/phpstan: ^1.12
- phpstan/phpstan-webmozart-assert: ^1.2
- phpunit/phpunit: ^10.5
- roave/security-advisories: dev-master
- symfony/phpunit-bridge: 6.1.*|^7.0
This package is auto-updated.
Last update: 2024-10-30 21:11:36 UTC
README
@@@@@@@@& @@@@@@@@ @@@@@@@@ @@@ @@@ @@@ &@@@@@@@@ @@@@@@@@@ @@@@@@
@@@/ @@@ @@@ @@@ (@@ #@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@* @@@
@@@/ @@@ @@@ @@@ @@@@ @@@ @@@ @@@ @@@ @@@@ @@@ @@@* @@@
@@@/ @@@ @@@ @@@ @@@@ @@@ @@@ @@@ @@@@@@ @@@ @@@* @@@
@@@/ @@@ @@@ @@@ @@@ @@@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@* @@@
,@@@ @@@ @@@ @@@ @@@% #@@@ @@@ @@@ @@@ @@@ @@@. @@@ @@@* @@@
%@@@@@@@@ @@@ @@@ /@@@@@@. @@@@@@/@@@@@@ @@@@@@@ @@@@@@@@* @@@ @@@
Econt pickup point bundle
Econt integration for Symfony.
Documentation of the API can be found here: https://ee.econt.com/services/Nomenclatures/
Installation
- install with Composer
composer require answear/econt-pickup-point-bundle
Answear\EcontBundle\AnswearEcontBundle::class => ['all' => true],
should be added automatically to your config/bundles.php
file by Symfony Flex.
Setup
# config/packages/answear_econt.yaml answear_econt: user: 'username' password: 'password'
config will be passed to \Answear\EcontBundle\ConfigProvider
class.
Usage
Get Offices
use Answear\EcontBundle\Command\GetOffices; use Answear\EcontBundle\Request\GetOfficesRequest; /** @var GetOffices $getOfficesCommand */ $getOfficeResponse = $getOfficesCommand->getOffices(new GetOfficesRequest());
Get Cities
use Answear\EcontBundle\Command\GetCities; use Answear\EcontBundle\Request\GetCitiesRequest; /** @var GetCities $getCitiesCommand */ $getCitiesResponse = $getCitiesCommand->getCities(new GetCitiesRequest());
Final notes
Feel free to open pull requests with new features, improvements or bug fixes. The Answear team will be grateful for any comments.