2017 © Pedro Peláez
 

library aws-sdk-php

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

image

aws/aws-sdk-php

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

  • Thursday, July 26, 2018
  • by jeremeamia
  • Repository
  • 273 Watchers
  • 3269 Stars
  • 40,423,399 Installations
  • PHP
  • 957 Dependents
  • 157 Suggesters
  • 793 Forks
  • 19 Open issues
  • 100 Versions
  • 8 % Grown

The README.md

AWS SDK for PHP - Version 3

Total Downloads Apache 2 License Gitter codecov, (*1)

The AWS SDK for PHP makes it easy for developers to access Amazon Web Services 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 or by downloading a single zip or phar file from our latest release., (*2)

Jump To: * Getting Started * Quick Examples * Getting Help * Features * Contributing * More Resources * Related AWS Projects, (*3)

Getting Started

  1. Sign up for AWS – Before you begin, you need to sign up for an AWS account and retrieve your AWS credentials.
  2. Minimum requirements – To run the SDK, your system will need to meet the minimum requirements, including having PHP >= 7.2.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 is the recommended way to install the AWS SDK for PHP. The SDK is available via Packagist under the 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 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. The Getting Started Guide 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.

Quick Examples

Create an Amazon S3 client

<?php
// Require the Composer autoloader.
require 'vendor/autoload.php';

use Aws\S3\S3Client;

// Instantiate an Amazon S3 client.
$s3 = new S3Client([
    'version' => 'latest',
    'region'  => 'us-west-2'
]);

Upload a file to Amazon S3

<?php
// Upload a publicly accessible file. The file size and type are determined by the SDK.
try {
    $s3->putObject([
        'Bucket' => 'my-bucket',
        'Key'    => 'my-object',
        'Body'   => fopen('/path/to/file', 'r'),
        'ACL'    => 'public-read',
    ]);
} catch (Aws\S3\Exception\S3Exception $e) {
    echo "There was an error uploading the file.\n";
}

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them., (*4)

This SDK implements AWS service APIs. For general issues regarding the AWS services and their limitations, you may also take a look at the Amazon Web Services Discussion Forums., (*5)

Maintenance and support for SDK major versions

For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:, (*6)

Opening Issues

If you encounter a bug with aws-sdk-php we would like to hear about it. Search the existing issues and try to make sure your problem doesn’t already exist before opening a new issue. It’s helpful if you include the version of aws-sdk-php, PHP version and OS you’re using. Please include a stack trace and a simple workflow to reproduce the case when appropriate, too., (*7)

The GitHub issues are intended for bug reports and feature requests. For help and questions with using aws-sdk-php please make use of the resources listed in the Getting Help section. There are limited resources available for handling issues and by keeping the list of open issues lean we can respond in a timely manner., (*8)

Features

Contributing

We work hard to provide a high-quality and useful SDK for our AWS services, and we greatly value feedback and contributions from our community. Please review our contributing guidelines before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution., (*9)

Resources

  • User Guide – For both getting started and in-depth SDK usage information
  • API Docs – For details about operations, parameters, and responses
  • Blog – Tips & tricks, articles, and announcements
  • Sample Project - A quick, sample project to help get you started
  • [Forum][sdk-forum] – Ask questions, get help, and give feedback
  • Issues – Report issues, submit pull requests, and get involved (see Apache 2.0 License)

The Versions

26/07 2018

dev-master

9999999-dev http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

26/07 2018

3.64.0

3.64.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

25/07 2018

3.63.7

3.63.7.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

24/07 2018

3.63.6

3.63.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/07 2018

3.63.5

3.63.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

19/07 2018

3.63.4

3.63.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

18/07 2018

3.63.3

3.63.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

17/07 2018

3.63.2

3.63.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

13/07 2018

3.63.1

3.63.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

12/07 2018

3.63.0

3.63.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

11/07 2018

3.62.14

3.62.14.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

10/07 2018

3.62.13

3.62.13.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

10/07 2018

3.62.12

3.62.12.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

09/07 2018

3.62.11

3.62.11.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

06/07 2018

3.62.10

3.62.10.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

05/07 2018

3.62.9

3.62.9.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

03/07 2018

3.62.8

3.62.8.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

02/07 2018

3.62.7

3.62.7.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

30/06 2018

3.62.6

3.62.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

28/06 2018

3.62.5

3.62.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

27/06 2018

3.62.4

3.62.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

26/06 2018

3.62.3

3.62.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/06 2018

3.62.2

3.62.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

22/06 2018

3.62.1

3.62.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

21/06 2018

3.62.0

3.62.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/06 2018

3.61.10

3.61.10.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

19/06 2018

3.61.9

3.61.9.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/06 2018

3.61.8

3.61.8.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/06 2018

3.61.7

3.61.7.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

13/06 2018

3.61.6

3.61.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

12/06 2018

3.61.5

3.61.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

11/06 2018

3.61.4

3.61.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

08/06 2018

3.61.3

3.61.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

08/06 2018

3.61.2

3.61.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

06/06 2018

3.61.1

3.61.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

04/06 2018

3.61.0

3.61.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

01/06 2018

3.60.0

3.60.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

31/05 2018

3.59.0

3.59.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

29/05 2018

3.58.0

3.58.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

25/05 2018

3.57.1

3.57.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

24/05 2018

3.57.0

3.57.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/05 2018

3.56.6

3.56.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

21/05 2018

3.56.5

3.56.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

18/05 2018

3.56.4

3.56.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

17/05 2018

3.56.3

3.56.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

16/05 2018

3.56.2

3.56.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/05 2018

3.56.1

3.56.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

14/05 2018

3.56.0

3.56.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

11/05 2018

3.55.12

3.55.12.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

10/05 2018

3.55.11

3.55.11.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

10/05 2018

3.55.10

3.55.10.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

08/05 2018

3.55.9

3.55.9.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

07/05 2018

3.55.8

3.55.8.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

04/05 2018

3.55.7

3.55.7.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

04/05 2018

3.55.6

3.55.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

02/05 2018

3.55.5

3.55.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

01/05 2018

3.55.4

3.55.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

26/04 2018

3.55.3

3.55.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

25/04 2018

3.55.2

3.55.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

24/04 2018

3.55.1

3.55.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/04 2018

3.55.0

3.55.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/04 2018

3.54.6

3.54.6.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/04 2018

3.54.5

3.54.5.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

11/04 2018

3.54.4

3.54.4.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

10/04 2018

3.54.3

3.54.3.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

06/04 2018

3.54.2

3.54.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

05/04 2018

3.54.1

3.54.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

04/04 2018

3.54.0

3.54.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

03/04 2018

3.53.2

3.53.2.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

02/04 2018

3.53.1

3.53.1.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

30/03 2018

3.53.0

3.53.0.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

30/03 2018

3.52.36

3.52.36.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

29/03 2018

3.52.35

3.52.35.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

27/03 2018

3.52.34

3.52.34.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

26/03 2018

3.52.33

3.52.33.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/03 2018

3.52.32

3.52.32.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

22/03 2018

3.52.31

3.52.31.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

21/03 2018

3.52.30

3.52.30.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/03 2018

3.52.29

3.52.29.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

16/03 2018

3.52.28

3.52.28.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/03 2018

3.52.27

3.52.27.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

14/03 2018

3.52.26

3.52.26.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

13/03 2018

3.52.25

3.52.25.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

12/03 2018

3.52.24

3.52.24.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

08/03 2018

3.52.23

3.52.23.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

07/03 2018

3.52.22

3.52.22.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

06/03 2018

3.52.21

3.52.21.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

01/03 2018

3.52.20

3.52.20.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

28/02 2018

3.52.19

3.52.19.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

27/02 2018

3.52.18

3.52.18.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

27/02 2018

3.52.17

3.52.17.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/02 2018

dev-signer_int_fix

dev-signer_int_fix http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

23/02 2018

3.52.16

3.52.16.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

22/02 2018

3.52.15

3.52.15.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

21/02 2018

3.52.14

3.52.14.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

20/02 2018

3.52.13

3.52.13.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

19/02 2018

3.52.12

3.52.12.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

16/02 2018

3.52.11

3.52.11.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/02 2018

3.52.10

3.52.10.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier

15/02 2018

3.52.9

3.52.9.0 http://aws.amazon.com/sdkforphp

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

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

cloud amazon s3 aws sdk dynamodb ec2 glacier