require('vendor/autoload.php');
use Emis\Http\Client;
use Emis\Company\Api\Proxy\Dictionary;
$client = new Client();
$client->setApi(Client::COMPANY_API);
$client->setToken("YOUR_TOKEN");
$dictionary = new Dictionary($client);
foreach($dictionary->getCompanyTypeList()->getResultList() as $companyType){
var_export($companyType);
}