Initial commit

This commit is contained in:
2024-08-13 03:11:06 +03:00
parent c095988fb6
commit b66a45202b
23 changed files with 1798 additions and 1 deletions

11
example.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
require_once 'vendor/autoload.php';
$client = new Ivuorinen\BusinessDataFetcher\BusinessDataFetcher();
try {
$results = $client->getBusinessInformation('1639413-9');
print_r($results);
} catch (\GuzzleHttp\Exception\GuzzleException $e) {
var_dump($e);
}