PHPackages                             reliv/aws-sdk-php-zf2-zf3fc - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. reliv/aws-sdk-php-zf2-zf3fc

ActiveLibrary[File &amp; Storage](/categories/file-storage)

reliv/aws-sdk-php-zf2-zf3fc
===========================

Zend Framework 2 Module that allows easy integration the AWS SDK for PHP

1.3.1(5y ago)01.0k2Apache-2.0PHPPHP &gt;=5.3.3

Since Dec 19Pushed 5y ago8 watchersCompare

[ Source](https://github.com/reliv/aws-sdk-php-zf2-zf3fc)[ Packagist](https://packagist.org/packages/reliv/aws-sdk-php-zf2-zf3fc)[ RSS](/packages/reliv-aws-sdk-php-zf2-zf3fc/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (8)Versions (5)Used By (0)

AWS SDK ZF2 Module
==================

[](#aws-sdk-zf2-module)

[![Latest Stable Version](https://camo.githubusercontent.com/b27a8fd3116fb1b200678c3065af283caa91a17d89f30bd1e244622c79f08fff/68747470733a2f2f706f7365722e707567782e6f72672f6177732f6177732d73646b2d7068702d7a66322f762f737461626c652e706e67)](https://packagist.org/packages/aws/aws-sdk-php-zf2)[![Total Downloads](https://camo.githubusercontent.com/90cc1e6befa26ac3453130604d2a4286ebf55127fce148be9abbd0a8bc32afcf/68747470733a2f2f706f7365722e707567782e6f72672f6177732f6177732d73646b2d7068702d7a66322f646f776e6c6f6164732e706e67)](https://packagist.org/packages/aws/aws-sdk-php-zf2)[![Build Status](https://camo.githubusercontent.com/968f4c29934b20f63cb3a5c7d3a48366376ccfa8d2ac1fcbbeb61ddfdb716843/68747470733a2f2f7472617669732d63692e6f72672f6177732f6177732d73646b2d7068702d7a66322e706e67)](https://travis-ci.org/aws/aws-sdk-php-zf2)

Introduction
------------

[](#introduction)

This module provides a simple wrapper for the AWS SDK for PHP. It registers the AWS service builder as a service in the ZF2 service manager, making it easily accessible anywhere in your application.

Installation
------------

[](#installation)

Install the module using Composer into your application's vendor directory. Add the following line to your `composer.json`. This will also install the AWS SDK for PHP.

```
{
    "require": {
        "aws/aws-sdk-php-zf2": "1.2.*"
    }
}
```

Configuration
-------------

[](#configuration)

Enable the module in your `application.config.php` file.

```
return array(
    'modules' => array(
        'Aws'
    )
);
```

Copy and paste the `aws.local.php.dist` file to your `config/autoload` folder and customize it with your credentials and other configuration settings. Make sure to remove `.dist` from your file. Your `aws.local.php` might look something like the following:

```
