Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2020-11-30 16:47:26 +0300
committerAleksander Machniak <alec@alec.pl>2020-11-30 16:47:26 +0300
commit79ef1f636f9c6c71e805971c8654c5bea6f07f68 (patch)
treea8f4eedc145eaf94ca70b54634ea1a1cbd1f0052 /.ci/install.sh
parent66ca4f0f72a788b446a440d797bc6e3733cfaff6 (diff)
Travis: Install kolab/net_ldap3, it's now required by tests
Diffstat (limited to '.ci/install.sh')
-rwxr-xr-x.ci/install.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/.ci/install.sh b/.ci/install.sh
index 6b159392c..2b92744c4 100755
--- a/.ci/install.sh
+++ b/.ci/install.sh
@@ -14,9 +14,8 @@ cp composer.json-dist composer.json
# Add laravel/dusk for Browser tests
if [ "$BROWSER_TESTS" = 1 ]; then composer require "laravel/dusk:~6.9.0" --no-update; fi
-# Remove qr-code as it requires php-gd which is not always available on Travis
-# and we don't really need it for tests
-# composer remove endroid/qr-code --no-update
+# Add suggested dependencies required for tests
+composer require "kolab/net_ldap3:~1.1.1" --no-update
# Install PHP dependencies
composer install --prefer-dist