Last active
April 11, 2016 20:09
-
-
Save lemonlab/dc5adb0372d7da62ac2f13cfa274ff0a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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