Skip to content

Commit

Permalink
fix: drop support for nextcloud 25 and php 7.4
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
st3iny committed Nov 15, 2023
1 parent 04bbe6f commit 725d33c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-audit-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
strategy:
fail-fast: false
matrix:
branches: ["main", "stable1.2"]
branches: ["main", "stable1.3"]

name: npm-audit-fix-${{ matrix.branches }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
ocp-version: [ 'dev-master', 'dev-stable27', 'dev-stable26', 'dev-stable25' ]
ocp-version: [ 'dev-master', 'dev-stable27', 'dev-stable26' ]

name: Nextcloud ${{ matrix.ocp-version }}
steps:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ jobs:
php-version: ['8.0', '8.1', '8.2']
nextcloud-version: ['master', 'stable27', 'stable26']
include:
- php-version: '7.4'
nextcloud-version: stable25
- php-version: '8.0'
nextcloud-version: stable25
nextcloud-version: stable26
- php-version: '8.1'
nextcloud-version: stable25
nextcloud-version: stable26
name: Nextcloud ${{ matrix.nextcloud-version }} php${{ matrix.php-version }} unit tests
steps:
- name: Set up Nextcloud env
Expand Down Expand Up @@ -62,9 +60,6 @@ jobs:
- php-version: '8.2'
nextcloud-version: master
db: 'mysql'
- php-version: '7.4'
nextcloud-version: stable25
db: 'mysql'
name: php${{ matrix.php-version }}-${{ matrix.db }} integration tests
services:
mysql-service:
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_webauthn/main/screenshots/challenge.png</screenshot>

<dependencies>
<php min-version="7.4" max-version="8.2"/>
<php min-version="8.0" max-version="8.2"/>
<lib>gmp</lib>
<nextcloud min-version="25" max-version="28" />
<nextcloud min-version="26" max-version="28" />
</dependencies>

<repair-steps>
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": ">=7.4.0",
"php": ">=8.0.0",
"ext-json": "*",
"bamarni/composer-bin-plugin": "^1.8.2",
"web-auth/webauthn-lib": "^3.3.12"
Expand Down Expand Up @@ -45,7 +45,7 @@
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.4.0"
"php": "8.0.0"
},
"sort-packages": true,
"allow-plugins": {
Expand Down

0 comments on commit 725d33c

Please sign in to comment.