mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #30521 from nextcloud/backport/30515/stable21
[stable21] Remove iconv from dependencies and tests
This commit is contained in:
commit
5eb791a1d3
5 changed files with 4 additions and 9 deletions
2
.github/workflows/oci.yml
vendored
2
.github/workflows/oci.yml
vendored
|
|
@ -41,7 +41,7 @@ jobs:
|
|||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, oci8
|
||||
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, oci8
|
||||
tools: phpunit:8.5.2
|
||||
coverage: none
|
||||
|
||||
|
|
|
|||
4
.github/workflows/s3-external.yml
vendored
4
.github/workflows/s3-external.yml
vendored
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
|
||||
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
|
||||
|
||||
- name: Set up Nextcloud
|
||||
run: |
|
||||
|
|
@ -94,7 +94,7 @@ jobs:
|
|||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
|
||||
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
|
||||
|
||||
- name: Set up Nextcloud
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/update-psalm-baseline.yml
vendored
2
.github/workflows/update-psalm-baseline.yml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: 7.4
|
||||
extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
coverage: none
|
||||
|
||||
- name: Composer install
|
||||
|
|
|
|||
|
|
@ -67,10 +67,6 @@ class PlatformRepository {
|
|||
$prettyVersion = $curlVersion['version'];
|
||||
break;
|
||||
|
||||
case 'iconv':
|
||||
$prettyVersion = ICONV_VERSION;
|
||||
break;
|
||||
|
||||
case 'intl':
|
||||
$name = 'ICU';
|
||||
if (defined('INTL_ICU_VERSION')) {
|
||||
|
|
|
|||
|
|
@ -854,7 +854,6 @@ class OC_Util {
|
|||
'json_encode' => 'JSON',
|
||||
'gd_info' => 'GD',
|
||||
'gzencode' => 'zlib',
|
||||
'iconv' => 'iconv',
|
||||
'simplexml_load_string' => 'SimpleXML',
|
||||
'hash' => 'HASH Message Digest Framework',
|
||||
'curl_init' => 'cURL',
|
||||
|
|
|
|||
Loading…
Reference in a new issue