Skip to content

Commit

Permalink
Upgrade to PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
almunnings committed Apr 13, 2024
1 parent f4c029d commit e62edbf
Show file tree
Hide file tree
Showing 9 changed files with 550 additions and 534 deletions.
2 changes: 1 addition & 1 deletion .ddev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: drupal10
router_http_port: "8080"
router_https_port: "8443"

php_version: "8.1"
php_version: "8.2"
composer_version: "2"
docroot: web
webserver_type: nginx-fpm
Expand Down
2 changes: 1 addition & 1 deletion .docker/cli.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM uselagoon/php-8.1-cli:latest
FROM uselagoon/php-8.2-cli:latest

ENV WEBROOT web
ENV PATH "/app/vendor/bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion .docker/php.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CLI_IMAGE
FROM ${CLI_IMAGE} as cli

FROM uselagoon/php-8.1-fpm:latest
FROM uselagoon/php-8.2-fpm:latest

COPY --from=cli /app /app
2 changes: 1 addition & 1 deletion .lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: drupal-boilerplate
recipe: drupal10

config:
php: "8.1"
php: "8.2"
composer_version: "2"
webroot: web

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"drupal/gin_login": "^2.0",
"drupal/gin_toolbar": "^1.0@RC",
"drupal/graphql": "^4.4",
"drupal/graphql_compose": "2.1.x-dev",
"drupal/graphql_compose": "^2.1@beta",
"drupal/graphql_export": "^2.0",
"drupal/layout_paragraphs": "^2.0",
"drupal/linkit": "^6.1",
Expand Down
1,058 changes: 534 additions & 524 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/sync/dvb.settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ logo:
favicon:
use_default: 1
vite:
port: "3000"
port: '3000'
dist_path: dist
manifest_path: dist/.vite/manifest.json
13 changes: 10 additions & 3 deletions config/sync/graphql_compose.settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ entity_config:
enabled: true
large_2x:
enabled: true
media_library:
enabled: false
medium:
enabled: true
medium_2x:
Expand All @@ -33,11 +35,19 @@ entity_config:
video:
enabled: true
menu:
account:
enabled: false
admin:
enabled: false
devel:
enabled: false
footer:
enabled: true
main:
enabled: true
menu_route_enabled: true
tools:
enabled: false
node:
page:
enabled: true
Expand All @@ -62,9 +72,6 @@ entity_config:
taxonomy_term:
tags:
enabled: true
user:
user:
enabled: true
field_config:
block_content:
another_type:
Expand Down
1 change: 0 additions & 1 deletion web/sites/default/services.development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ parameters:
- '#\.lndo\.site(:\d+)?$#'
- '#\.ddev\.site(:\d+)?$#'
- '#\.amazee\.io$#'
- '#\.ironstar\.io$#'
- '#\.platformsh\.site$#'

# Sets the Access-Control-Expose-Headers header.
Expand Down

0 comments on commit e62edbf

Please sign in to comment.