<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
alirezahamedashki / charter724-api-laravel example snippets
return [
/*
|--------------------------------------------------------------------------
| Api Access Token
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'access_token' => "PUT-YOUR-ACCESS-TOKEN-HERE",
/*
|--------------------------------------------------------------------------
| Refresh Access Token
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'refresh_access_token' => false,
/*
|--------------------------------------------------------------------------
| Api Base Uri
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'base_uri' => 'http://172.charter725.ir/APi/WebService/',
/*
|--------------------------------------------------------------------------
| Api Authentication Uri
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'auth_uri' => "http://172.charter725.ir/APi/Login",
/*
|--------------------------------------------------------------------------
| Table Names
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'table_names' => [
'airports' => 'airports'
],
/*
|--------------------------------------------------------------------------
| Column Names
|--------------------------------------------------------------------------
|
| TODO:
| Some Description About This
*/
'column_names' => [
/**
* TODO:
* Some Description About This
*/
'code_int' => 'code_int',
/**
* TODO:
* Some Description About This
*/
'name_en' => 'name_en',
/**
* TODO:
* Some Description About This
*/
'name_fa' => 'name_fa',
/**
* TODO:
* Some Description About This
*/
'IATA_airport' => 'IATA_airport',
],
];