Browse Source
Add all required PHP extensions to the composer.json
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/40889/head
Côme Chilliet
2 years ago
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with
11 additions and
1 deletions
-
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" |
|
|
|