File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ functions:
6464| Redis | `${bref-extra:redis-php-74}` |
6565| Scrypt | `${bref-extra:scrypt-php-74}` |
6666| SPX | `${bref-extra:spx-php-74}` |
67+ | Symfony Runtime | `${bref-extra:symfony-runtime-php-74}`|
6768| Microsoft SQLSRV | `${bref-extra:sqlsrv-php-74}` |
6869| UUID | `${bref-extra:uuid-php-74}` |
6970| Xdebug | `${bref-extra:xdebug-php-74}` |
@@ -106,6 +107,10 @@ There is more information about the driver ini configuration in the [snowflake c
106107but the default configuration is enough in most cases.
107108The easiest way review those is to download the [`snowflake_odbc` directory](https://sfc-repo.snowflakecomputing.com/odbc/linux/index.html).
108109
110+ # ## Symfony Runtime
111+
112+ Read [docs at runtime/bref](https://github.com/php-runtime/bref).
113+
109114# ## SQL Server setup
110115
111116The SQL Server layer includes both the SQLSRV extension and the PDO_SQLSRV extension ([source](https://github.com/microsoft/msphpsql)).
Original file line number Diff line number Diff line change 1+ # Build the final image with just the files we need
2+ FROM scratch
3+
4+ COPY bootstrap /opt/bootstrap
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # Fail on error
4+ set -e
5+
6+ LAMBDA_ARGV=(${_HANDLER//:/ } )
7+
8+ while true
9+ do
10+ # We redirect stderr to stdout so that everything
11+ # written on the output ends up in Cloudwatch automatically
12+ /opt/bin/php " ${LAMBDA_ARGV[0]} " 2>&1
13+ done
Original file line number Diff line number Diff line change 1+ {
2+ "php" : [
3+ " 73" ,
4+ " 74" ,
5+ " 80"
6+ ]
7+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ // Always pass
4+ exit (0 );
You can’t perform that action at this time.
0 commit comments