PHPackages                             rene-roscher/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. [File &amp; Storage](/categories/file-storage)
4. /
5. rene-roscher/aws-sdk-php

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

rene-roscher/aws-sdk-php
========================

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

4.0.0(4y ago)02701Apache-2.0PHPPHP &gt;=5.5

Since Nov 2Pushed 4y agoCompare

[ Source](https://github.com/Rene-Roscher/aws-sdk-php)[ Packagist](https://packagist.org/packages/rene-roscher/aws-sdk-php)[ Docs](http://aws.amazon.com/sdkforphp)[ RSS](/packages/rene-roscher-aws-sdk-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (15)Versions (1329)Used By (1)

AWS SDK for PHP - Version 3 (DO NOT USE IN PRODUCTION)
======================================================

[](#aws-sdk-for-php---version-3-do-not-use-in-production)

### It is not recommended to use this on production - This fork is used to test aws sdk on php 8 (Laravel 8.x)

[](#it-is-not-recommended-to-use-this-on-production---this-fork-is-used-to-test-aws-sdk-on-php-8-laravel-8x)

[![@awsforphp on Twitter](https://camo.githubusercontent.com/c17b2c5b53b824f61a1500d2c0f70eb94ad3d85ab13798c417e499e700878b93/687474703a2f2f696d672e736869656c64732e696f2f62616467652f747769747465722d253430617773666f727068702d626c75652e7376673f7374796c653d666c6174)](https://twitter.com/awsforphp)[![Total Downloads](https://camo.githubusercontent.com/92a023c8d279a2cfa938190f872b8b3bb971a4c6d7e98f96c77204a2eec479bc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6177732f6177732d73646b2d7068702e7376673f7374796c653d666c6174)](https://packagist.org/packages/aws/aws-sdk-php)[![Build Status](https://camo.githubusercontent.com/7f83e98ce950ea5b5e632d31dc63af1400a8167a4bd13f604555623e3891b468/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6177732f6177732d73646b2d7068702e7376673f7374796c653d666c6174)](https://travis-ci.org/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)

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.

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

[](#quick-examples)

### Create an Amazon S3 client

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

```
