You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2020/11/17 13:37:22 UTC

[avro] 01/03: AVRO-2979: Pin PHP dependency tools to specific versions

This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git

commit d3bb916340203521065972da7e29aee05ea9f421
Author: Ryan Skraba <ry...@skraba.com>
AuthorDate: Tue Nov 17 11:17:29 2020 +0100

    AVRO-2979: Pin PHP dependency tools to specific versions
---
 composer.json           | 2 +-
 share/docker/Dockerfile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/composer.json b/composer.json
index 232296f..e5f1313 100644
--- a/composer.json
+++ b/composer.json
@@ -4,7 +4,7 @@
   "minimum-stability": "stable",
   "license": "Apache-2.0",
   "require": {
-    "beberlei/composer-monorepo-plugin": "^0.16"
+    "beberlei/composer-monorepo-plugin": "0.16.5"
   },
   "require-dev": {
     "phpunit/phpunit": "^9.1",
diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile
index 659132e..bfcab76 100644
--- a/share/docker/Dockerfile
+++ b/share/docker/Dockerfile
@@ -112,7 +112,7 @@ RUN curl -sSL https://packages.sury.org/php/apt.gpg \
  && apt-get -qqy clean \
  && rm -rf /var/lib/apt/lists
 
-RUN curl -sS https://getcomposer.org/installer | php -- --version=2.0.4 --install-dir=/usr/local/bin --filename=composer
+RUN curl -sS https://getcomposer.org/installer | php -- --version=2.0.7 --install-dir=/usr/local/bin --filename=composer
 
 # Install Perl modules
 RUN apt-get -qqy update \