Skip to content

Commit 241826a

Browse files
Add ext-zip as platform dependency
Signed-off-by: Christoph Wurst <[email protected]>
1 parent 9eea1e5 commit 241826a

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
uses: shivammathur/setup-php@master
1616
with:
1717
php-version: ${{ matrix.php-versions }}
18+
extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
1819
coverage: none
1920
- name: Lint
2021
run: composer run lint

.github/workflows/psalm-security.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: docker://vimeo/psalm-github-actions
2020
with:
2121
security_analysis: true
22+
composer_ignore_platform_reqs: true
2223
report_file: results.sarif
2324
- name: Upload Security Analysis results to GitHub
2425
uses: github/codeql-action/upload-sarif@v1

.github/workflows/static-code-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
uses: shivammathur/setup-php@master
1818
with:
1919
php-version: 7.4
20+
extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
2021
coverage: none
2122
- name: Composer install
2223
run: composer i

.github/workflows/update-psalm-baseline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: shivammathur/setup-php@master
2020
with:
2121
php-version: 7.4
22+
extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
2223
coverage: none
2324
- name: Composer install
2425
run: composer i

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
"ext-libxml": "*",
1717
"ext-pdo": "*",
1818
"ext-simplexml": "*",
19-
"ext-xmlreader": "*"
20-
},
19+
"ext-xmlreader": "*",
20+
"ext-zip": "*"
21+
},
2122
"require-dev": {
2223
"nextcloud/coding-standard": "^0.3.0",
2324
"vimeo/psalm": "^4.0"

composer.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)