Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.98 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.98 KB

TYPO3 Extension: AWS SDK for PHP

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 in the AWS cloud.

The TYPO3 extension EXT:aws_sdk_php is a wrapper for the AWS SDK for PHP. Its main purpose is to integrate the SDK in non-Composer based TYPO3 installations. If your TYPO3 instance uses Composer, we recommend to install the official AWS SDK for PHP from the original repository directly:

$ composer require aws/aws-sdk-php

Minimum Requirements

If you need to sign private Amazon CloudFront URLs, the PHP extension OpenSSL is also required.

Further details are available in the AWS documentation.

Installation

To install the extension in a legacy TYPO3 installation (without Composer), follow these steps:

  • Login at the TYPO3 backend as an administrator user.
  • Open the Extension Manager and update the extension list if required.
  • Search for the extension key aws_sdk_php.
  • Click the install icon next to the extension.

Usage

Once you installed the TYPO3 extension, the PHP namespaces are available for your custom PHP code. For example, the S3 Client class:

use Aws\S3\S3Client;
...
$client = new S3Client();

Additional Resources

You find further information about the AWS SDK for PHP at:

Further details: https://github.com/aws/aws-sdk-php/blob/master/README.md

License

The AWS SDK for PHP is copyright by Amazon Web Services, Inc. Licensed under the Apache-2.0 license.