import { Callout } from 'nextra/components'; import { NextSeo } from 'next-seo';
PHP will read its configuration from:
/opt/bref/etc/php/php.ini(PHP's official production configuration)/opt/bref/etc/php/conf.d/bref.ini(Bref's optimizations for Lambda)
These files cannot be customized.
You can create your own php.ini to customize PHP's configuration:
- create a
php/conf.d/subdirectory in your project - create a
php.inifile inside that directory (the name of the file does not matter, it must have an.iniextension)
PHP will automatically include any *.ini file found in php/conf.d/ in your project.
If you want PHP to scan a different directory than php/conf.d/ in your project, you can override the path by setting it in the PHP_INI_SCAN_DIR environment variable.
Learn how to declare environment variables by reading the Environment Variables guide.
If you are using Lambda layers, for example to use custom PHP extensions, you can override the default php.ini by placing your own configuration file in /opt/bref/etc/php/conf.d/.
Make sure to give a unique name to your .ini file to avoid any collision with other layers.
Bref strives to include the most common PHP extensions. If a major PHP extension is missing please open an issue to discuss it.
The following extensions are installed and enabled by default in Bref runtimes:
- Core
- bcmath
- ctype
- curl
- date
- dom
- exif
- fileinfo
- filter
- ftp
- gettext
- hash
- iconv
- json
- libxml
- mbstring
- mysqli
- mysqlnd
- opcache
- openssl
- pcntl
- pcre
- PDO
- pdo_sqlite
- pdo_mysql
- pdo_pgsql
- Phar
- posix
- readline
- Reflection
- session
- SimpleXML
- sodium
- sockets
- SPL
- sqlite3
- tokenizer
- xml
- xmlreader
- xmlwriter
- xsl
- zlib
The following extensions are installed in Bref runtimes, but disabled by default:
- intl - Internationalization extension (referred as Intl) is a wrapper for ICU library, enabling PHP programmers to perform various locale-aware operations.
- APCu - APCu is APC stripped of opcode caching.
- Redis - A PHP extension for interfacing with Redis.
- soap - SOAP client and server for PHP
You can enable these extensions by loading them in php/conf.d/php.ini (as mentioned in the section above), for example:
extension=intl
extension=apcu
extension=redis
extension=soapDue to space limitations in AWS Lambda, Bref runtimes cannot include every possible PHP extensions. These additional PHP extensions can be included as separate AWS Lambda layers.
All extra PHP extensions are found in brefphp/extra-php-extensions. These include Relay — a high-performance drop-in replacement for the redis extension that keeps a copy of your Redis data in shared memory.
Contributions to add more PHP extensions are welcomed.
It is also possible to provide your own extensions via custom AWS Lambda layers.
This guide is really raw, feel free to contribute to improve it.
To create your custom layer, you will need to:
- compile the extension (and any required libraries) in the same environment as AWS Lambda and Bref
- include the compiled extension (and required libraries) in a layer
- upload the layer to AWS Lambda
- include the in your project
- enable the extension in a custom
php.ini
To compile the extension, Bref provides the bref/build-php-* Docker images. Here is an example with Blackfire:
FROM bref/build-php-84:3
RUN curl -A "Docker" -o /tmp/blackfire.so -L -s "https://packages.blackfire.io/binaries/blackfire-php/1.42.0/blackfire-php-linux_amd64-php-84.so"
# Build the final image from the amazon image that is close to the production environment
FROM public.ecr.aws/lambda/provided:al2023
# Copy things we installed to the final image
COPY --from=0 /tmp/blackfire.so /opt/bref-extra/blackfire.soThe .so extension file can then be retrieved in /opt/bref-extra/blackfire.so.
If you installed system libraries, you may also need to copy them to the public.ecr.aws/lambda/provided:al2023
image.
See brefphp/extra-php-extensions for more examples.
Bref automatically requires vendor dependencies from the default vendor/autoload.php path.
If your Composer dependencies are installed elsewhere, you can customize that path via the BREF_AUTOLOAD_PATH environment variable.
provider:
# ...
environment:
BREF_AUTOLOAD_PATH: '/var/task/foo-bar/vendor/autoload.php'The path must start with /var/task, which is the directory where projects are installed on AWS Lambda.