Skip to content

Instantly share code, notes, and snippets.

@lemonlab
Last active April 11, 2016 20:09
Show Gist options
  • Save lemonlab/dc5adb0372d7da62ac2f13cfa274ff0a to your computer and use it in GitHub Desktop.
Save lemonlab/dc5adb0372d7da62ac2f13cfa274ff0a to your computer and use it in GitHub Desktop.
<?php
// Instantiate an Amazon S3 client.
$s3 = new Aws\S3\S3Client([
'version' => 'latest',
'region' => 'eu-west-1',
'credentials' => [
'key' => 'your-key',
'secret' => 'your-secret'
]
]);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment