Skip to content

Commit

Permalink
upgrades to php 8.1.x
Browse files Browse the repository at this point in the history
Upgrading to php 8.1.x requires some updates to fuelphp.

I've submitted a PR, which will be required for this pr to work.
So this is more of a placeholder than anything.

Here's the fuel/core PR fuel/core#2182
  • Loading branch information
iturgeon committed Oct 20, 2022
1 parent ad91443 commit 5f46dfd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ services:
- BOOL_LTI_LOG_FOR_DEBUGGING=true
- CACHE_DRIVER=memcached
- CIPHER_KEY=${DEV_ONLY_SECRET_CIPHER_KEY}
- CRYPTO_HMAC=${DEV_ONLY_SECRET_CIPHER_KEY}
- CRYPTO_IV=${DEV_ONLY_SECRET_CIPHER_KEY}
- CRYPTO_KEY=${DEV_ONLY_SECRET_CIPHER_KEY}
- DATABASE_URL=mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@mysql/${MYSQL_DATABASE}
- FUEL_ENV=development
- FUEL_LOG_THRESHOLD=100
Expand Down
2 changes: 1 addition & 1 deletion materia-app.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================================================================================
# Base stage used for build and final stages
# =====================================================================================================
FROM php:8.0.24-fpm-alpine3.16 AS base_stage
FROM php:8.1.11-fpm-alpine3.16 AS base_stage

ARG PHP_EXT="bcmath gd pdo_mysql xml zip opcache"
ARG PHP_MEMCACHED_VERSION="v3.1.5"
Expand Down

0 comments on commit 5f46dfd

Please sign in to comment.