Download the PHP package riddman/nova-poshta-api without Composer
On this page you can find all versions of the php package riddman/nova-poshta-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download riddman/nova-poshta-api
More information about riddman/nova-poshta-api
Files in riddman/nova-poshta-api
Download riddman/nova-poshta-api
More information about riddman/nova-poshta-api
Files in riddman/nova-poshta-api
Vendor riddman
Package nova-poshta-api
Short Description A simple library for working with API 2.0 of Nova Poshta
License
Package nova-poshta-api
Short Description A simple library for working with API 2.0 of Nova Poshta
License
Please rate this library. Is it a good library?
Informations about the package nova-poshta-api
NovaPoshtaAPI
A simple library for working with API 2.0 of Nova Poshta (https://devcenter.novaposhta.ua/start)
Requirements:
- PHP 5.6 or higher
Installation
Step 1
Run the following command
composer require riddman/nova-poshta-api
Usage
Example
<?php
use Riddman\NovaPoshtaApi\NovaPoshta;
/* Some of your code*/
$apiKey = 'your api key';
$citiesList = NovaPoshta::getCities($apiKey);
$departmentsList = NovaPoshta::getDepartments($apiKey);
// Get departments with pagination
$itemsPerPage = 2;
$pageNumber = 1;
$departmentsList = NovaPoshta::getDepartments($apiKey, $itemsPerPage, $pageNumber);
Method getCities returns the following data:
{
"success": true,
"data": [
// here will be list of cities
],
"errors": [],
"warnings": [],
"info": {
"totalCount": 5964
},
"messageCodes": [],
"errorCodes": [],
"warningCodes": [],
"infoCodes": []
}
All versions of nova-poshta-api with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.6
The package riddman/nova-poshta-api contains the following files
Loading the files please wait ....