AWS Developer Tools Blog

Category: PHP

AWS Service Provider for Laravel 1.0.4

We would like to announce the availability of version 1.0.4 of the AWS Service Provider for Laravel. This version includes the AwsLaravelAwsFacade class which allows you to register an AWS facade in your Laravel 4 project, so you can retrieve clients in an easy and idiomatic way (e.g., $s3 = AWS::get(‘s3’);). We would also like […]

Read More

Syncing Data with Amazon S3

Warning: this blog post provides instructions for AWS SDK for PHP V2, if you are looking for AWS SDK for PHP V3 instructions, please see our SDK guide. Have you ever needed to upload an entire directory of files to Amazon S3 or download an Amazon S3 bucket to a local directory? With a recent release […]

Read More

Static Service Client Facades

Version 2.4 of the AWS SDK for PHP adds the ability to enable and use static client facades. These “facades” provide an easy, static interface to service clients available in the service builder. For example, when working with a normal client instance, you might have code that looks like the following: // Get the configured […]

Read More

AWS at Symfony Live Portland 2013

A few weeks ago, I had the pleasure of attending the Symfony Live Portland 2013 conference. This year, Symfony Live co-located with the very large DrupalCon, and though I did not attend any of the DrupalCon sessions, I did get to talk to many Drupal developers during lunches and the hack day. It was awesome […]

Read More

Transferring Files To and From Amazon S3

A common question that I’ve seen on our PHP forums is whether there is an easy way to directly upload from or download to a local file using the Amazon S3 client in the AWS SDK for PHP. The typical usage of the PutObject operation in the PHP SDK looks like the following: use AwsCommonAws; […]

Read More

New Blog for the AWS SDK for PHP

Hello fellow PHP developers! Welcome to our new blog for the AWS SDK for PHP. I’m Jeremy Lindblom, and I work with Michael Dowling on the AWS SDK for PHP here at Amazon Web Services. We will be working together on this blog to bring you articles and tips about the PHP SDK and post […]

Read More