Add all required PHP extensions to the composer.json

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2023-10-24 09:17:25 +02:00
parent 0c346849f3
commit 27995d1376
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 11 additions and 1 deletions

View File

@ -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"