Skip to content

Commit

Permalink
Merge pull request #163 from MCMic/enh/support-nextcloud-30
Browse files Browse the repository at this point in the history
feat: Support Nextcloud 30
  • Loading branch information
MCMic authored Jan 4, 2025
2 parents dd953d1 + 28df189 commit 5a3ca8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT

name: Lint php

Expand All @@ -25,16 +28,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
php-versions: [ '8.1', '8.2', '8.3' ]

name: php-lint

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false

- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@e6f75134d35752277f093989e72e140eaa222f35 # v2
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
with:
php-version: ${{ matrix.php-versions }}
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
Expand Down
5 changes: 3 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
<screenshot>https://raw.githubusercontent.com/mcmic/workflow_kitinerary/master/screenshots/calendar.png</screenshot>

<dependencies>
<php min-version="8.0"/>
<nextcloud min-version="25" max-version="29" />
<php min-version="8.1"/>
<nextcloud min-version="27" max-version="30" />
<backend>caldav</backend>
</dependencies>

<activity>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"config": {
"platform": {
"php": "8.0.2"
"php": "8.1"
}
},
"autoload-dev": {
Expand Down

0 comments on commit 5a3ca8f

Please sign in to comment.