Skip to content

Commit

Permalink
Remove legacy AliasRecord interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Aug 14, 2018
1 parent d735aa4 commit 0a2ec16
Show file tree
Hide file tree
Showing 8 changed files with 190 additions and 190 deletions.
7 changes: 6 additions & 1 deletion .scenarios.lock/install
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,9 @@ set -ex

composer -n validate --working-dir=$dir --no-check-all --ansi
composer -n --working-dir=$dir ${DEPENDENCIES} --prefer-dist --no-scripts
composer -n --working-dir=$dir info

# If called from a CI context, print out some extra information about
# what we just installed.
if [[ -n "$CI" ]] ; then
composer -n --working-dir=$dir info
fi
5 changes: 2 additions & 3 deletions .scenarios.lock/phpunit5/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
],
"autoload": {
"psr-4": {
"Consolidation\\SiteAlias\\": "src",
"Drush\\SiteAlias\\": "src/legacy"
"Consolidation\\SiteAlias\\": "src"
}
},
"autoload-dev": {
Expand Down Expand Up @@ -56,7 +55,7 @@
"@cs"
],
"release": [
"( echo && echo 'Ensure that VERSION file contains the version to release.' && echo \"Current version: $(cat VERSION)\" && tag=$(cat VERSION) && git tag \"$tag\" && git push origin \"$tag\" )"
"( sed -e 's/-dev$//' VERSION > VERSION.tmp && mv -f VERSION.tmp VERSION && ver=\"$(cat VERSION)\" && git add VERSION && git commit -m \"Version $ver\" && git push origin master && git tag \"$ver\" && git push origin \"$ver\" && a=( ${ver//./ } ) && ((a[2]++)) && echo \"${a[0]}.${a[1]}.${a[2]}-dev\" > VERSION && git add VERSION && git commit -m \"Back to -dev\" && git push origin master )"
],
"scenario": ".scenarios.lock/install",
"post-update-cmd": [
Expand Down
Loading

0 comments on commit 0a2ec16

Please sign in to comment.