aboutsummaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-24 09:17:25 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-10-24 09:17:25 +0200
commit27995d1376ea5ae979a7bfb8cc4a25a5db1f670c (patch)
treef8fca6fc908686fd511edbb973785962b84ddcc7 /composer.json
parent0c346849f3904f4994ea306ef53884ffb87a2ee6 (diff)
downloadnextcloud-server-27995d1376ea5ae979a7bfb8cc4a25a5db1f670c.tar.gz
nextcloud-server-27995d1376ea5ae979a7bfb8cc4a25a5db1f670c.zip
Add all required PHP extensions to the composer.json
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json12
1 files changed, 11 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index e3da98e0277..c73645f575c 100644
--- a/composer.json
+++ b/composer.json
@@ -23,14 +23,24 @@
},
"require": {
"php": "^8.0",
+ "ext-ctype": "*",
+ "ext-curl": "*",
+ "ext-dom": "*",
+ "ext-fileinfo": "*",
+ "ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
+ "ext-posix": "*",
+ "ext-session": "*",
"ext-simplexml": "*",
+ "ext-xml": "*",
"ext-xmlreader": "*",
- "ext-zip": "*"
+ "ext-xmlwriter": "*",
+ "ext-zip": "*",
+ "ext-zlib": "*"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4"