1. Go to this page and download the library: Download kex15i10/ukrposhta library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kex15i10 / ukrposhta example snippets
$config = new Ukrposhta\Data\Configuration();
$config->setBearer('string bearer');
$config->setToken('string token');
$config = new Ukrposhta\Data\Configuration();
$config->setBearer('string bearer');
$config->setToken('string token');
$cities = new Ukrposhta\Directory\City($config)->getList();
$districts = new Ukrposhta\Directory\District($config)->getList();
$regions = new Ukrposhta\Directory\Region($config)->getList();
$streets = new Ukrposhta\Directory\Street($config)->getList();
$params = new Ukrposhta\Data\Storage();
$params->region_id = 1;
$cities = new Ukrposhta\Directory\City($config)->getList($params);
$postoffices = new Ukrposhta\Directory\Postoffice($config)->getByCityId(1);
$storage = new Ukrposhta\Data\Storage();
$postoffices = new Ukrposhta\Directory\Postoffice($config)->getByPostIndex(72370);