Skip to content
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Ignore directories generated by Composer
/bin
/drush/contrib/
/vendor/
/web/core/
Expand All @@ -23,3 +24,5 @@

# Ignore .env files as they are personal
/.env
/.editorconfig
/.gitattributes
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Composer template for Drupal projects
# Composer template for Drupal projects (DevShop Edition)

[![CI](https://github.com/drupal-composer/drupal-project/actions/workflows/ci.yml/badge.svg?branch=9.x)](https://github.com/drupal-composer/drupal-project/actions/workflows/ci.yml)

Expand Down
17 changes: 17 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "^9.4",
"drupal/core-recommended": "^9.4",
"drupal/drupal-extension": "^4.2",
"symfony/filesystem": "^4.4",
"vlucas/phpdotenv": "^5.1",
"webflo/drupal-finder": "^1.2",
Expand All @@ -35,6 +36,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
Expand Down Expand Up @@ -62,6 +64,18 @@
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"deploy:build": [
"composer install --dev --profile --audit"
],
"deploy:update": [
"drush pm:update --no-cache-clear",
"drush cache:rebuild",
"drush config:import",
"drush cache:rebuild"
],
"deploy:test": [
"behat"
]
},
"extra": {
Expand All @@ -83,6 +97,9 @@
"drupal/core": "-p2"
},
"patches": {
"drupal/core": [
"./patches/no-emoji-info.patch"
]
}
}
}
Loading