Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
matrix:
php-versions: [ '8.1' ]
databases: [ 'sqlite' ]
server-versions: [ 'master', 'stable29', 'stable28' ]
server-versions: [ 'master' ]

name: Integration test on ${{ matrix.server-versions }} php@${{ matrix.php-versions }}

Expand Down Expand Up @@ -159,6 +159,7 @@ jobs:
pip install --no-deps -r requirements.txt
cp example.env .env
echo "NEXTCLOUD_URL=http://localhost:8080" >> .env
sed -i 's/disable_aaa: false/disable_aaa: true/' config.cpu.yaml
./main.py &> backend_logs &

- name: Register backend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-php-cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

strategy:
matrix:
php-versions: [ "8.0", "8.1", "8.2" ]
php-versions: [ "8.1", "8.2", "8.3" ]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

strategy:
matrix:
php-versions: [ "8.0", "8.1", "8.2" ]
php-versions: [ "8.1", "8.2", "8.3" ]

name: php-lint

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:

strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2' ]
server-versions: [ 'dev-master', 'dev-stable28' ]
php-versions: [ '8.1', '8.2', '8.3' ]
server-versions: [ 'dev-master' ]
fail-fast: false

name: Nextcloud
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Note:
Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/context_chat_backend/?tab=readme-ov-file) and the [AppAPI's documentation](https://cloud-py-api.github.io/app_api/) for help with setup of AppAPI's deploy daemon.
]]></description>
<version>2.2.2</version>
<version>3.0.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>ContextChat</namespace>
Expand All @@ -31,7 +31,7 @@ Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/contex
<screenshot>https://github.com/nextcloud/context_chat/raw/main/img/screenshot2.jpg</screenshot>
<screenshot>https://github.com/nextcloud/context_chat/raw/main/img/screenshot3.jpg</screenshot>
<dependencies>
<nextcloud min-version="28" max-version="30"/>
<nextcloud min-version="30" max-version="30"/>
</dependencies>
<background-jobs>
<job>OCA\ContextChat\BackgroundJobs\SchedulerJob</job>
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2"
"php": "^8.1 || ^8.2 || ^8.3"
},
"require-dev": {
"nextcloud/coding-standard": "^1.1",
"nextcloud/coding-standard": "^1.2",
"nextcloud/ocp": "dev-master",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.6",
"psalm/phar": "^5.15",
"friendsofphp/php-cs-fixer": "3.38"
"phpunit/phpunit": "^10.5",
"psalm/phar": "^5.25"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
Expand All @@ -43,7 +42,7 @@
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.0"
"php": "8.1"
}
},
"autoload": {
Expand Down
Loading