diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-05-29 16:39:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 16:39:59 +0200 |
commit | 71571344548bfa58f45086e309f812fee317bc11 (patch) | |
tree | ce5df6eaa9a67db8c50eadbfd80597922a2fab0d | |
parent | 532f4c41dae98e9cdfe50af6b67806982cd5111f (diff) | |
parent | adf7d17cb2fe3b3a24fd5b56cad4b2e1e3e6c3d3 (diff) | |
download | nextcloud-server-71571344548bfa58f45086e309f812fee317bc11.tar.gz nextcloud-server-71571344548bfa58f45086e309f812fee317bc11.zip |
Merge pull request #21141 from nextcloud/fix/require-ext-pdo-composer
List ext-pdo as hard requirement for composer
-rw-r--r-- | composer.json | 3 | ||||
-rw-r--r-- | composer.lock | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/composer.json b/composer.json index fb6cd010889..bd5e43157dd 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,8 @@ } }, "require": { - "ext-json": "*" + "ext-json": "*", + "ext-pdo": "*" }, "require-dev": { "jakub-onderka/php-parallel-lint": "^0.9.2", diff --git a/composer.lock b/composer.lock index c62d71353bd..6de89a74dd5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c6266c06daad42dd49f2bd3d5288467d", + "content-hash": "1fdbc1b1b14d4a9a25d6eb1084490f1a", "packages": [], "packages-dev": [ { @@ -1712,7 +1712,8 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "ext-json": "*" + "ext-json": "*", + "ext-pdo": "*" }, "platform-dev": [], "plugin-api-version": "1.1.0" |