diff --git a/.travis.yml b/.travis.yml index 79ae975..c78443e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,11 @@ language: php +# Handle git submodules yourself +git: + submodules: false +# Use sed to replace the SSH URL with the public URL, then initialize submodules +before_install: + - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules + - git submodule update --init --recursive before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev