An open API service indexing awesome lists of open source software.

https://github.com/aiir/php71-mysql-aws-lambda-layer

AWS Lambda layer that adds the MySQL modules for PHP 7.1
https://github.com/aiir/php71-mysql-aws-lambda-layer

Last synced: about 1 month ago
JSON representation

AWS Lambda layer that adds the MySQL modules for PHP 7.1

Awesome Lists containing this project

README

        

# PHP Layer For AWS Lambda

Adds the PHP 7.1 MySQL modules to your Lambda environment via a layer.

The following MySQL-related modules are placed in `/opt/lib/php/7.1/modules`:

```
mysqli.so
mysqlnd.so
pdo.so
pdo_mysql.so
```

To make use of these, your `php.ini` needs to load them:

```
extension=mysqlnd.so
```