PHPackages                             hashhesh/aws-sdk-php - 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. [API Development](/categories/api)
4. /
5. hashhesh/aws-sdk-php

ActiveLibrary[API Development](/categories/api)

hashhesh/aws-sdk-php
====================

AWS SDK for PHP - Use Amazon Web Services in your PHP project

02PHP

Since Jan 13Pushed 3y agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

AWS SDK for PHP - Version 3
===========================

[](#aws-sdk-for-php---version-3)

[![Total Downloads](https://camo.githubusercontent.com/92a023c8d279a2cfa938190f872b8b3bb971a4c6d7e98f96c77204a2eec479bc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6177732f6177732d73646b2d7068702e7376673f7374796c653d666c6174)](https://packagist.org/packages/aws/aws-sdk-php)[![Apache 2 License](https://camo.githubusercontent.com/355c50fa2adac1bb5a6b3d35d2a742eda01561d7692b2b1a4cda41735fd9e828/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6177732f6177732d73646b2d7068702e7376673f7374796c653d666c6174)](http://aws.amazon.com/apache-2-0/)[![Gitter](https://camo.githubusercontent.com/7ef10285f91c3bbdeda34d0f468f0f4e33f8420f753ff70ac6e3b6d2c03e409e/68747470733a2f2f6261646765732e6769747465722e696d2f6177732f6177732d73646b2d7068702e737667)](https://gitter.im/aws/aws-sdk-php?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)[![codecov](https://camo.githubusercontent.com/39a6ba91c7a9f9b0ddaf914f2f630ec0a4c3e0a5aef1e2503471f767efeadfc2/68747470733a2f2f636f6465636f762e696f2f67682f6177732f6177732d73646b2d7068702f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/aws/aws-sdk-php)

### Note:

[](#note)

this package it's the same as the original, the only thing changed is the namespaceing. In case you are working on system and it's using old psr7 version or causing conflicts or you can't upgrade the package version in core application then use this package. this package version is 3.255.4.

The **AWS SDK for PHP** makes it easy for developers to access [Amazon Web Services](http://aws.amazon.com) in their PHP code, and build robust applications and software using services like Amazon S3, Amazon DynamoDB, Amazon Glacier, etc. You can get started in minutes by [installing the SDK through Composer](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/getting-started_installation.html)or by downloading a single zip or phar file from our [latest release](https://github.com/aws/aws-sdk-php/releases).

Jump To:

- [Getting Started](#Getting-Started)
- [Quick Examples](#Quick-Examples)
- [Getting Help](#Getting-Help)
- [Features](#Features)
- [Contributing](#Contributing)
- [More Resources](#Resources)
- [Related AWS Projects](#Related-AWS-Projects)

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

[](#getting-started)

1. **Sign up for AWS** – Before you begin, you need to sign up for an AWS account and retrieve your [AWS credentials](http://aws.amazon.com/developers/access-keys/).
2. **Minimum requirements** – To run the SDK, your system will need to meet the [minimum requirements](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/getting-started_requirements.html), including having **PHP &gt;= 5.5**. We highly recommend having it compiled with the cURL extension and cURL 7.16.2+ compiled with a TLS backend (e.g., NSS or OpenSSL).
3. **Install the SDK** – Using [Composer](http://getcomposer.org) is the recommended way to install the AWS SDK for PHP. The SDK is available via [Packagist](http://packagist.org) under the [`aws/aws-sdk-php`](https://packagist.org/packages/aws/aws-sdk-php) package. If Composer is installed globally on your system, you can run the following in the base directory of your project to add the SDK as a dependency: ```
    composer require aws/aws-sdk-php

    ```

    Please see the [Installation section of the User Guide](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/getting-started_installation.html) for more detailed information about installing the SDK through Composer and other means.
4. **Using the SDK** – The best way to become familiar with how to use the SDK is to read the [User Guide](http://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/welcome.html). The [Getting Started Guide](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/welcome.html#getting-started) will help you become familiar with the basic concepts.
5. **Beta: Removing unused services** — To date, there are over 300 AWS services available for use with this SDK. You will likely not need them all. If you use Composer and would like to learn more about this feature, please read the [linked documentation](https://github.com/aws/aws-sdk-php/tree/master/src/Script/Composer).

Quick Examples
--------------

[](#quick-examples)

### Create an Amazon S3 client

[](#create-an-amazon-s3-client)

```
