Skip to content

Commit 6fabe81

Browse files
authored
Merge pull request #88 from govCMS/release/3.3.0
Release 3.3.0: Preparation for Drupal 10.2
2 parents 11dbbcd + dfc8565 commit 6fabe81

File tree

4 files changed

+6
-23
lines changed

4 files changed

+6
-23
lines changed

.ahoy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ commands:
132132
usage: Enable debug configuration.
133133
cmd: |
134134
{ ahoy run "php -v|grep -q Xdebug" && echo "Debug is already enabled"; } \
135-
|| { export XDEBUG_ENABLE="true" && ahoy up cli test php && ahoy run "php -v|grep -q Xdebug" && echo "Enabled debug configuration. Use 'ahoy up' to disable."; }
135+
|| { export XDEBUG_ENABLE="true" && ahoy up cli test php nginx && ahoy run "php -v|grep -q Xdebug" && echo "Enabled debug configuration. Use 'ahoy up' to disable."; }
136136
137137
info:
138138
usage: Print information about this project.

.docker/Dockerfile.paas

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
ARG CLI_IMAGE
66
ARG GOVCMS_IMAGE_VERSION={{ GOVCMS_VERSION }}.x-latest
77

8-
# Keep the base so we can copy modules from it at the end.
9-
FROM govcms/govcms:${GOVCMS_IMAGE_VERSION} as base
10-
118
FROM govcms/govcms:${GOVCMS_IMAGE_VERSION}
129

1310
ARG GOVCMS_GITHUB_TOKEN
@@ -39,8 +36,6 @@ COPY .docker/config/cli/govcms.site.yml /app/drush/sites/
3936
RUN rm -Rf /home/.composer/vendor/bin
4037
ENV PATH="/app/vendor/bin:${PATH}"
4138

42-
COPY --from=base /app/web/sites/all/modules/ /app/web/sites/all/modules/
43-
4439
# Sanitize the Drupal install to remove potentially
4540
# harmful files from the built image.
4641
COPY .docker/scripts/sanitize.sh /tmp/sanitize.sh

.version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# e.g. site audits, automated backups.
66
version: {{ GOVCMS_VERSION }}
77
type: {{ GOVCMS_TYPE }}
8-
scaffold: 3.0.1
8+
scaffold: 3.3.0

composer.10.json

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,15 @@
77
{ "type": "path", "url": "custom/composer" },
88
{ "type": "composer", "url": "https://packages.drupal.org/8" },
99
{ "type": "composer", "url": "https://asset-packagist.org" },
10-
{ "type": "vcs", "url": "git@github.com:govcms/govcms.git" },
11-
{
12-
"type": "package",
13-
"package": {
14-
"name": "dropzone/dropzone",
15-
"version": "v5.7.2",
16-
"type": "drupal-library",
17-
"dist": {
18-
"type": "zip",
19-
"url": "https://github.com/dropzone/dropzone/archive/refs/tags/v5.7.2.zip"
20-
}
21-
}
22-
}
10+
{ "type": "vcs", "url": "git@github.com:govcms/govcms.git" }
2311
],
2412
"require": {
2513
"php": "^8.1",
2614
"govcms/govcms-custom": "*",
2715
"govcms/govcms": "3.x-master-dev",
2816
"govcms/scaffold-tooling": "10.x-master-dev",
2917
"drush/drush": "^12",
30-
"composer/installers": "^2.0",
31-
"egulias/email-validator": "4.0.1 as 3.2.6"
18+
"composer/installers": "^2.0"
3219
},
3320
"conflict": {
3421
"drupal/drupal": "*"
@@ -47,7 +34,8 @@
4734
"drupal/core-composer-scaffold": true,
4835
"drupal/core-project-message": true,
4936
"oomphinc/composer-installers-extender": true,
50-
"phpstan/extension-installer": true
37+
"phpstan/extension-installer": true,
38+
"php-http/discovery": true
5139
}
5240
},
5341
"autoload": {

0 commit comments

Comments
 (0)