Skip to content

Instantly share code, notes, and snippets.

@edubacco
Created March 19, 2021 10:12
Show Gist options
  • Save edubacco/e9020144080fee4df3c36096273f7e4e to your computer and use it in GitHub Desktop.
Save edubacco/e9020144080fee4df3c36096273f7e4e to your computer and use it in GitHub Desktop.
<?php
use GuzzleHttp\Client;
if (file_exists('vendor/autoload.php')) {
include 'vendor/autoload.php';
}
$client = new Client();
$res = $client->get('https://s3-ats-migration-test.s3.eu-west-3.amazonaws.com/test.jpg');
print_r($res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment