Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: drop support for nextcloud 25 and php 7.4 #484

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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