Laravel package to work with API Justin
Read this in other language: English, Русский, Український
- PHP 5.6 or above
- Composer
- Laravel
- Justin
composer require jackmartin/laravel-justin
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,
php artisan vendor:publish
Select Tag: justin-laravel-config
or
php artisan vendor:publish --provider="JustinLaravel\JustinServiceProvider" --tag="justin-laravel-config"
'language' => 'UA'
'sandbox' => true
'version' => 'v2'
'orderVersion' => 'v1'
'timeout' => 60
'connect_timeout' => 60
'timezone' => 'UTC'
'auth_login' => 'Exchange'
'auth_password' => 'Exchange'
'key' => ''
'login' => ''
'password' => ''
- Setup connection
- Get current status order:
- Get list regions.
- Get list regional areas.
- Get list settlements.
- Get list areas of settlements
- Get list streets city.
- Get list types branches
- Get information about department
- Get list departments. Old method
- Get list departments.
- Get schedule work branch
- Get nearest department by address
- Cancel order
- Get list statuses order.
- Get key seller(senderID)
- Get tracking history
- Get story statuses order. Old method
- Get story statuses order.
- Create new order(Departure)
- Get list orders for specified period
- Get information about order
- Create sticker order
print_r(
\JustinLaravel::listRegions()->getData()
// (new \JustinLaravel())->listRegions()->getData()
);
print_r(
\JustinLaravel::listCities()->getData()
// (new \JustinLaravel())->listCities()->getData()
);
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()
);