imper86 / php-inpost-api
PHP SDK for Inpost ShipX API
Installs: 38 654
Dependents: 1
Suggesters: 0
Security: 0
Stars: 14
Watchers: 1
Forks: 11
Open Issues: 3
Requires
- php: >=7.1
- ext-json: *
- imper86/http-client-builder: ^2.0
- imper86/php-http-cache-plugin: ^2.0
Requires (Dev)
- http-interop/http-factory-guzzle: ^1.0
- imper86/vbump: ^1.0
- php-http/guzzle6-adapter: ^2.0
- symfony/var-dumper: ^5.3
README
Installation
composer require imper86/php-inpost-api
HTTPlug note
This lib uses HTTPlug so it doesn't depend on any http client. In order to use this lib you must have some PSR-18 http client and PSR-17 http factories. If you don't know which one you shoud install you can require these:
composer require php-http/guzzle6-adapter http-interop/http-factory-guzzle
Usage
Using this library is very simple, fast example should be enough to understand how it works.
use Imper86\PhpInpostApi\InpostApi; use Imper86\PhpInpostApi\Plugin\AcceptLanguagePlugin; // if you want to use all resources you must ask Inpost for // access token via their contact form // https://inpost.pl/formularz-wsparcie $token = 'aaaa.aaaa'; // create api client $api = new InpostApi($token); // this library provides optional Plugin for localizing // error messages $api->addPlugin(new AcceptLanguagePlugin('pl_PL')); // from now you can use these api methods: $api->addressBooks()->(...); $api->batches()->(...); $api->dispatchOrders()->(...); $api->dispatchPoints()->(...); $api->mpks()->(...); $api->organizations()->(...); $api->points()->(...); $api->sendingMethods()->(...); $api->services()->(...); $api->shipments()->(...); $api->shipmentTemplates()->(...); $api->statuses()->(...); $api->tracking()->(...); // fast example: var_dump($api->organizations()->shipments()->get('1234'));
If you use IDE with typehinting such as PHPStorm, you'll easily figure it out. If not, please take a look in Resource directory
Examples
If you still wonder how to use this lib, checkout example php scripts:
Contributing
Any help will be very appreciated :)