Skip to content

git: Add support for loading the composer.lock file relative to the current directory. #44

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

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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ ehthumbs.db
Thumbs.db
/test-project
/test-data/vendor
/composer.lock
/vendor
11 changes: 11 additions & 0 deletions composer-lock-diff
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,17 @@ function vcsLoadGit($fileish, $base_path, $_default_fileish) {
}

if (strpos($fileish, ':') === false) {
if (empty($base_path)) {
// Resolve from the relative directory.
$git_dir = findUp('.', '.git');
if ($git_dir) {
$project_dir = dirname($git_dir) . DIRECTORY_SEPARATOR;
$current_working_dir = getcwd();
if (substr( $current_working_dir, 0, strlen($project_dir)) === $project_dir) {
$base_path = substr($current_working_dir, strlen($project_dir)) . DIRECTORY_SEPARATOR;
}
}
}
$fileish .= ':' . $base_path . 'composer.lock';
}

Expand Down
42 changes: 42 additions & 0 deletions test-git.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

git --help > /dev/null || { echo "Fail: could not find 'git' executable"; exit 1; }

trap cleanup INT ERR

function cleanup() {
cd "$DIR/test-data"
rm -rf proj proj-working gitrepo
}

set -eEx

cd test-data

mkdir -p proj/trunk

cp composer.from.json proj/trunk/composer.json
cp composer.from.lock proj/trunk/composer.lock

cp -r proj gitrepo
cd gitrepo && \
git init && \
git add . && \
git commit -m "initial commit" && \
cd ..

git clone file://$PWD/gitrepo proj-working
cp composer.to.json proj-working/trunk/composer.json
cp composer.to.lock proj-working/trunk/composer.lock

cd proj-working/trunk
../../../composer-lock-diff

cd ..
../../composer-lock-diff -p trunk

cd ..
rm -rf proj proj-working gitrepo