April 2026
Intermediate
1009 pages
34h 15m
English
This is probably the quickest way to install a package with Composer:
composer require "aws/aws-sdk-php"
This installs the latest version of the PHP SDK for Amazon's AWS cloud platform. Here are some examples of more specific versions:
"aws/aws-sdk-php=3.0.0"Exact version 3.0.0
"aws/aws-sdk-php=3.0.*"At least version 3.0.0, a smaller version than 3.1.0
"aws/aws-sdk-php>=3.0.0"At least version 3.0.0
"aws/aws-sdk-php>3.0.0"A higher version than 3.0.0
"aws/aws-sdk-php<=3.0.0"At most, version 3.0.0
"aws/aws-sdk-php<3.0.0"A smaller version than 3.0.0
"aws/aws-sdk-php^3.0.0"At least version 3.0.0, less than version 4.0.0 (because the API could change there; recommended for dependencies)
A complete ...
Read now
Unlock full access