Skip to content

Commit

Permalink
Merge pull request #5542 from nextcloud/feat/php8.3-support
Browse files Browse the repository at this point in the history
Add PHP8.3 support
  • Loading branch information
ChristophWurst authored Oct 20, 2023
2 parents 76c7372 + 8c6431e commit 2ec032c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ "7.4", "8.0", "8.1", "8.2" ]
php-versions: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]

name: php-lint

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/php-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
nextcloud-versions: 'stable25'
- php-versions: '8.1'
nextcloud-versions: 'stable25'
- php-versions: '8.3'
nextcloud-versions: 'master'
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
env:
CI: true
Expand Down Expand Up @@ -55,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
nextcloud-versions: [ 'master']
include:
- php-versions: '7.4'
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_room_suggestion.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_sidebar.png</screenshot>
<dependencies>
<php min-version="7.4" max-version="8.2" />
<php min-version="7.4" max-version="8.3" />
<nextcloud min-version="25" max-version="28" />
</dependencies>
<background-jobs>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
},
"require": {
"php": ">=7.4 <=8.2",
"php": ">=7.4 <=8.3",
"bamarni/composer-bin-plugin": "^1.8.2"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2ec032c

Please sign in to comment.