-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates for improved Drupal 10 compatibility. For more information see …
- Loading branch information
Pantheon Automation
committed
Feb 23, 2023
1 parent
e99b469
commit 2405f50
Showing
4 changed files
with
146 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,27 @@ | ||
# Only commit files that are explicitly part of the upstream configuration. | ||
# This prevents `vendor` et. al. from being committed should someone | ||
# accidentally run composer operations in this directory without including | ||
# the `--no-update` flag. | ||
## Only commit files that are explicitly part of the upstream configuration. | ||
## This prevents `vendor` et. al. from being committed should someone | ||
## accidentally run composer operations in this directory without including | ||
## the `--no-update` flag. | ||
* | ||
|
||
# Explicitly allow files that are supposed to be part of the upstream | ||
# configuration here. If other files are added, include another line | ||
# beginning with a "!" and followed by the new file's name to override | ||
# the .gitignore directive above (i.e. to "un-ignore" it). | ||
## Explicitly allow files that are supposed to be part of the upstream | ||
## configuration here. If other files are added, include another line | ||
## beginning with a "!" and followed by the new file's name to override | ||
## the .gitignore directive above (i.e. to "un-ignore" it). | ||
!README.md | ||
!composer.json | ||
!composer.lock | ||
!scripts | ||
!scripts/* | ||
!locked | ||
|
||
## Allow composer.lock to be committed in custom upstreams if you wish | ||
## to force all sites created from this upstream to be locked to the | ||
## exact dependency versions stored in the upstream-configuration/composer.lock | ||
## file. This is advantageous in that it reduces the scope of testing needed in | ||
## each downstream site by forcing them to use the versions that were tested | ||
## in the upstream. It is appropriate to use in upstreams that will only be | ||
## used within the group or organization that manages the upstream. To allow | ||
## the composer.lock file to be committed, ensure that the '!composer.lock' | ||
## line below is uncommented. | ||
# !composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Upstream Configuration | ||
|
||
If you are working on your custom upstream, use this folder for upstream specific stuff. | ||
|
||
You can require the `pantheon-systems/upstream-management` [composer package](https://packagist.org/packages/pantheon-systems/upstream-management) to get access to some upstream management tools. Require it with composer like this: | ||
|
||
``` | ||
composer require pantheon-systems/upstream-management:^1 | ||
``` | ||
|
||
Read project description for more information about the tools that it contains. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters