Skip to content

Commit

Permalink
Merge pull request #3642 from nextcloud/feat/php8.3-support
Browse files Browse the repository at this point in the history
Add support for php8.3
  • Loading branch information
ChristophWurst authored Oct 9, 2023
2 parents 813a6c9 + 91d2cb8 commit 9854dd8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 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: [ "8.0", "8.1", "8.2" ]
php-versions: [ "8.0", "8.1", "8.2", "8.3"]

name: php-lint

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,13 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.0', '8.1', '8.2']
php-versions: ['8.1', '8.2', '8.3']
databases: ['mysql']
server-versions: ['master']
include:
- php-versions: '8.0'
server-versions: 'master'
databases: 'mysql'
- php-versions: '7.4'
server-versions: stable25
databases: 'mysql'
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Contacts/contacts.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>

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test:integration": "phpunit -c phpunit.integration.xml --fail-on-warning"
},
"require": {
"php": ">=7.4 <=8.2"
"php": ">=7.4 <=8.3"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^0.12.4",
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

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

0 comments on commit 9854dd8

Please sign in to comment.