Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT :: Solution implementation for lrcarvalho tests #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ corepack_enable: false

# docroot: <relative_path> # Relative path to the directory containing index.php.

# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"
# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"

# You can explicitly specify the webimage but this
# is not recommended, as the images are often closely tied to DDEV's' behavior,
Expand Down Expand Up @@ -80,12 +80,10 @@ corepack_enable: false

# nodejs_version: "20"
# change from the default system Node.js version to any other version.
# Numeric version numbers can be complete (i.e. 18.15.0) or
# incomplete (18, 17.2, 16). 'lts' and 'latest' can be used as well along with
# other named releases.
# see https://www.npmjs.com/package/n#specifying-nodejs-versions
# Note that you can continue using 'ddev nvm' or nvm inside the web container
# to change the project's installed node version if you need to.
# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information
# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation,
# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use,
# can specify any version, and is more robust than using 'nvm'.

# corepack_enable: false
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
Expand Down
17 changes: 16 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,19 @@
],
"require": {
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.4",
"drupal/core-composer-scaffold": "10.3.2",
"drupal/core-project-message": "10.3.2",
"drupal/core-recommended": "10.3.2",
"drupal/entity_browser": "^2.10",
"drupal/entity_workflow": "^2.0@alpha",
"drupal/gin": "^3.0@RC",
"drupal/inline_entity_form": "^3.0@RC",
"drupal/paragraphs": "^1.17",
"drupal/rules": "^4.0",
"drupal/serial": "^2.0@beta",
"drupal/workflows_field": "^2.1",
"drush/drush": "^12.5"
},
"conflict": {
Expand All @@ -38,7 +43,8 @@
"drupal/core-project-message": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
"php-http/discovery": true,
"cweagans/composer-patches": true
},
"sort-packages": true
},
Expand All @@ -48,6 +54,10 @@
"web-root": "web/"
}
},
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"web/core": [
"type:drupal-core"
Expand Down Expand Up @@ -77,6 +87,11 @@
"type:drupal-custom-theme"
]
},
"patches": {
"drupal/serial": {
"Issue 2929297: Disabled widget addition": "https://www.drupal.org/files/issues/2024-03-07/serial-disabled_widget-2929297-10.patch"
}
},
"drupal-core-project-message": {
"include-keys": [
"homepage",
Expand Down
Loading