Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via composer

aws/aws-crt-php v1.2.3

AWS Common Runtime for PHP
Package summary
Share
0
issues
1
license
1
Apache-2.0
Package created
4 Mar 2021
Version published
16 Oct 2023
Maintainers
3
Total deps
1
Direct deps
0
License
Apache-2.0

Issues

0
This package has no issues

Licenses

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
aws/aws-crt-php@v1.2.3
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of aws/aws-crt-php 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does aws/aws-crt-php do?

The aws/aws-crt-php is a package that provides PHP bindings to the AWS Common Runtime, a mechanism that fosters portability and efficiency in the AWS SDKs. The Common Runtime simplifies the process of implementing and maintaining AWS SDKs and provides benefits such as memory safety, performance, and richer features.

How do you use aws/aws-crt-php?

The usage of the aws/aws-crt-php package is carried out through PHP programming and it can be installed with Composer and PECL. To get started with the package on UNIX, use the package manager or build from source. Here's a code snippet showing the installation process:

pecl install awscrt
composer require aws/aws-crt-php

For windows, the native extension php_awscrt.dll will have to be built from source. Once built and loaded, you can use the following command to require the package:

composer require aws/aws-crt-php

Building from Github source can be achieved using the following commands:

git clone --recursive https://github.com/awslabs/aws-crt-php.git
cd aws-crt-php
phpize
./configure
make
./dev-scripts/run_tests.sh

Note that it is required to have PHP 5.5+ on UNIX platforms or 7.2+ on Windows along with CMake 3.x and the relevant versions of GCC/Clang or Visual Studio build tools.

Where are the aws/aws-crt-php docs?

There isn't a direct reference to a dedicated documentation site for aws/aws-crt-php in the readme. Nonetheless, more information and the source code can be found in the GitHub repository. Possible issues, pull requests, and code contributions can also be tracked and managed here. The readme file serves as a basic guide on how to install and use this PHP package. To deal with certain issues related to OpenSSL in UNIX, users can refer to the Known OpenSSL related issue section provided in the readme.