You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$client = new GuzzleHttp\Client();
|
|
$res = $client->request('GET', 'http://localhost:8080/approvals');
|
|
echo $res->getBody();
|
|
|
|
$res = $client->request('GET', 'http://localhost:8081/accounts');
|
|
echo $res->getBody();
|
|
|