Skip to content

3.0.0

Compare
Choose a tag to compare
@ArielMejiaDev ArielMejiaDev released this 14 Sep 01:49
· 7 commits to master since this release

3.0.0

Add support for Laravel 7 and improvements on response, now you can validate response with helpers:

response methods:

$response = PagaloGT::add(1, 'product', 100.00)->withTestCard()->withTestCredentials()->pay();
if($response->successful()) {
    // do something
}

methods:

$response->fail();
$response->successful();
$response->ok()
$response->header('single header');
$response->headers();