AWS Developer Tools Blog

Category: PHP

AWS Service Provider for Laravel 1.1.0

We would like to announce the availability of version 1.1.0 of the AWS Service Provider for Laravel. This release updates the config handling logic of the service provider and provides a package-level configuration that can be published to your Laravel application via Artisan for easy customization. Are there any other features you would like to […]

Read More

Release: AWS SDK for PHP 2.4.4

We would like to announce the release of version 2.4.4 of the AWS SDK for PHP. This release updates the Amazon EC2 client to use the 2013-07-15 API version and fixes issues reported on the forums and GitHub. Changelog Added support for assigning a public IP address to a VPC instance at launch to the […]

Read More

Provision an Amazon EC2 Instance with PHP

Amazon EC2 is a powerful AWS service that includes the ability to provision on-demand servers. While you can easily do this through the AWS Management Console, in this post, I want show you how to use the AWS SDK for PHP to do it programmatically by interacting with the Amazon EC2 API. Let’s create a […]

Read More

Release: AWS SDK for PHP 2.4.3

We would like to announce the release of version 2.4.3 of the AWS SDK for PHP. This release adds support for the Amazon Simple Notification Service mobile push API, adds progress reporting on snapshot restore operations for Amazon Redshift, and addresses an issue with directories and the Amazon S3 stream wrapper. Changelog Updated the Amazon […]

Read More

Iterating through Amazon DynamoDB Results

The AWS SDK for PHP has a feature called “iterators” that allows you to retrieve an entire result set without manually handling pagination tokens or markers. The iterators in the SDK implement PHP’s Iterator interface, which allows you to easily enumerate or iterate through resources from a result set with foreach. The Amazon DynamoDB client […]

Read More

AWS SDK ZF2 Module 1.1.0

We would like to announce the availability of version 1.1.0 of the AWS SDK ZF2 Module. This version includes a session save handler for Amazon DynamoDB, so that you can use DynamoDB as a session store for your Zend Framework 2 applications.

Read More

Release: AWS SDK for PHP 2.4.2

We would like to announce the release of version 2.4.2 of the AWS SDK for PHP. This release adds support for custom Amazon Machine Images (AMIs) and Chef 11 to the AWS OpsWorks client, adds the latest snapshot permission features to the Amazon Redshift client, and updates the Amazon EC2 and AWS Security Token Service […]

Read More

Amazon S3 PHP Stream Wrapper

As of the 2.3.0 release, the AWS SDK for PHP now provides an official Amazon S3 PHP stream wrapper. The stream wrapper allows you to treat Amazon S3 like a filesystem using functions like fopen(), file_get_contents(), and filesize() through a custom stream wrapper protocol. The Amazon S3 stream wrapper opens up some interesting possibilities that […]

Read More

Uploading Archives to Amazon Glacier from PHP

You can easily upload your data archives to Amazon Glacier by using the Glacier client included in the AWS SDK for PHP. Similar to the Amazon S3 service, Amazon Glacier has an API for both single and multipart uploads. You can upload archives of up to 40,000 GB through the multipart operations. With the UploadArchive […]

Read More

Release: AWS SDK for PHP 2.4.1

We would like to announce the release of version 2.4.1 of the AWS SDK for PHP. This release adds support for setting watermark and max frame rate parameters in the Amazon Elastic Transcoder client and resolves issues with the Amazon S3, Amazon EC2, Amazon ElastiCache, AWS Elastic Beanstalk, Amazon EMR, and Amazon RDS clients. Changelog […]

Read More