PHPackages                             saeven/laminas-aws-sdk - 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. saeven/laminas-aws-sdk

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

saeven/laminas-aws-sdk
======================

Laminas Module that allows easy integration the AWS SDK for PHP

5.0.0(4y ago)07.8k↓41.7%Apache-2.0PHPPHP ^7.4

Since Mar 1Pushed 4y agoCompare

[ Source](https://github.com/Saeven/laminas-aws-sdk)[ Packagist](https://packagist.org/packages/saeven/laminas-aws-sdk)[ RSS](/packages/saeven-laminas-aws-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (10)Versions (20)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)

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.

Jump To:

- [Getting Started](_#Getting-Started_)
- [Getting Help](_#Getting-Help_)
- [Contributing](_#Contributing_)
- [Related Modules](_#Related-Modules_)
- [More Resources](_#Resources_)

Getting Started
---------------

[](#getting-started)

### 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.

If you want to use `ZF3` and your PHP version &gt;= 5.6, use

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

Otherwise,

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

> If you are using ZF2 service manager &lt; 2.7, please use the 2.0.\* version.

> If you are using AWS SDK v2, please use the 1.2.\* version of the ZF2 module.

### Configuration

[](#configuration)

Add the module name to your project's `config/application.config.php` or `config/modules.config.php`:

```
return array(
    /* ... */
    'modules' => array(
        /* ... */
        'AwsModule'
    ),
    /* ... */
);
```

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:

```
