Skip to content

Latest commit

 

History

History
executable file
·
203 lines (171 loc) · 6.29 KB

README.en.md

File metadata and controls

executable file
·
203 lines (171 loc) · 6.29 KB

Description

Latest Stable Version Total Downloads License

Laravel package to work with API Justin

Read this in other language: English, Русский, Український

Wiki - Description library

Justin API library

Documentation

API documentation

Openapi

Requirements

  • PHP 5.6 or above
  • Composer
  • Laravel
  • Justin

Composer

composer require jackmartin/laravel-justin

Laravel setting

After installing the package with composer, register the service package in the file bootstrap/app.php:

JustinLaravel\JustinServiceProvider::class

Then to quickly call the class of the package, add an alias in the same file:

'JustinLaravel' => JustinLaravel\Facades\JustinFacade::class,

Package settings

Copy settings file

php artisan vendor:publish

Select Tag: justin-laravel-config

or

php artisan vendor:publish --provider="JustinLaravel\JustinServiceProvider" --tag="justin-laravel-config"

Package configuration

Set language response API. Default: UA

language

'language'        => 'UA'

Set sandbox for testing. Default: true

sandbox

'sandbox'         => true

Set version API. Default: v2

version

'version'         => 'v2'

Set orderVersion API. Default: v1

orderVersion

'orderVersion'    => 'v1'

Set timeout return response. Default: 60

timeout

'timeout'         => 60

Set connect_timeout connection server. Default: 60

connect_timeout

'connect_timeout' => 60

Set timezone. Default: UTC

timezone

'timezone'        => 'UTC'

Set auth server login. Default: Exchange

auth_login

'auth_login'      => 'Exchange'

Set auth server password. Default: Exchange

auth_password

'auth_password'   => 'Exchange'

Set key API.

key

'key'             => ''

Set login API.

login

'login'           => ''

Set password API.

password

'password'        => ''

Basic methods API

  1. Setup connection
  2. Get current status order:
  3. Get list regions.
  4. Get list regional areas.
  5. Get list settlements.
  6. Get list areas of settlements
  7. Get list streets city.
  8. Get list types branches
  9. Get information about department
  10. Get list departments. Old method
  11. Get list departments.
  12. Get schedule work branch
  13. Get nearest department by address
  14. Cancel order
  15. Get list statuses order.
  16. Get key seller(senderID)
  17. Get tracking history
  18. Get story statuses order. Old method
  19. Get story statuses order.
  20. Create new order(Departure)
  21. Get list orders for specified period
  22. Get information about order
  23. Create sticker order

Examples

listRegions()

print_r(

    \JustinLaravel::listRegions()->getData()
    // (new \JustinLaravel())->listRegions()->getData()

);

listCities()

print_r(

    \JustinLaravel::listCities()->getData()
    // (new \JustinLaravel())->listCities()->getData()

);

getBranch()

print_r(

    (new JustinLaravel())->getBranch('220')->getData()
    // (new JustinLaravel())->getBranch('220')->fields()->number()
    // (new JustinLaravel())->getBranch('220')->fields()->getType()
    // (new JustinLaravel())->getBranch('220')->fields()->address()
    // (new JustinLaravel())->getBranch('220')->fields()->getPosition()
    // (new JustinLaravel())->getBranch('220')->fields()->getDescr()
    // (new JustinLaravel())->getBranch('220')->fields()->scheduDescr()

);