Skip to content

Commit 36a06cf

Browse files
committed
Debug Travis
1 parent 71d0956 commit 36a06cf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis/before_script.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ composer config repositories.travis_to_test git https://github.com/$TRAVIS_REPO_
2929
composer require ${COMPOSER_PACKAGE_NAME}:dev-${TRAVIS_BRANCH}\#{$TRAVIS_COMMIT}
3030

3131
# Install dev dependencies of module
32-
php ../.travis/merge-dev.php vendor/$COMPOSER_PACKAGE_NAME/composer.json composer.json | tee composer.json
32+
cat ./composer.json
33+
php ../.travis/merge-dev.php vendor/$COMPOSER_PACKAGE_NAME/composer.json ./composer.json | tee composer.json
3334
composer update
3435

3536
# prepare for test suite

.travis/merge-dev.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
$fromJson = json_decode(file_get_contents($fromFile), true);
1313
$toJson = json_decode(file_get_contents($toFile), true);
14+
var_dump($fromJson, $toJson, json_last_error_msg());
1415

1516
foreach ($fromJson['autoload-dev']['psr-4'] ?? [] as $key => $value) {
1617
$pathPrefix = dirname($fromFile) . DIRECTORY_SEPARATOR;

0 commit comments

Comments
 (0)