Compare commits

..

1 Commits

Author SHA1 Message Date
Jonas f01ca9ff19
Merge 2c30b2fd85 into b60d1e77a6 2024-11-28 14:09:58 +01:00
6 changed files with 6 additions and 25 deletions

View File

@ -12,10 +12,7 @@ jobs:
strategy: strategy:
matrix: matrix:
php-versions: ['8.0', '8.1', '8.2'] php-versions: ['8.0', '8.1', '8.2']
nextcloud-versions: ['stable26', 'stable27', 'stable28', 'stable29', 'stable30'] nextcloud-versions: ['stable26', 'stable27', 'stable28']
exclude:
- php-versions: '8.0'
nextcloud-versions: 'stable30'
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
env: env:
CI: true CI: true

View File

@ -6,11 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ocp-version: [ "^30", "^29", '^28', '^27', '^26'] ocp-version: [ '^28', '^27', '^26']
include:
- psrcontainer: "psr/container"
- psrcontainer: "psr/container:^1.1.2"
ocp-version: '^26'
name: Nextcloud ${{ matrix.ocp-version }} name: Nextcloud ${{ matrix.ocp-version }}
steps: steps:
- name: Checkout - name: Checkout
@ -25,7 +21,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: composer i run: composer i
- name: Install dependencies - name: Install dependencies
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} ${{ matrix.psrcontainer }} symfony/service-contracts run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} symfony/service-contracts
- name: Run coding standards check - name: Run coding standards check
run: composer run psalm run: composer run psalm

View File

@ -22,7 +22,7 @@ Contributors are welcome! If you have time it would be awesome if you could help
*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.* *This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*
]]></description> ]]></description>
<version>2.7.3</version> <version>2.7.2</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="cloud_bbb@arawa.fr" homepage="https://arawa.fr/">Arawa</author> <author mail="cloud_bbb@arawa.fr" homepage="https://arawa.fr/">Arawa</author>
<author>Klaus Herberth</author> <author>Klaus Herberth</author>
@ -44,7 +44,7 @@ Contributors are welcome! If you have time it would be awesome if you could help
<lib>curl</lib> <lib>curl</lib>
<lib>mbstring</lib> <lib>mbstring</lib>
<lib>SimpleXML</lib> <lib>SimpleXML</lib>
<nextcloud min-version="26" max-version="30"/> <nextcloud min-version="26" max-version="28"/>
</dependencies> </dependencies>
<commands> <commands>
<command>OCA\BigBlueButton\Command\ClearAvatarCache</command> <command>OCA\BigBlueButton\Command\ClearAvatarCache</command>

View File

@ -18,7 +18,7 @@
"phpstan/phpstan": "^0.12.29", "phpstan/phpstan": "^0.12.29",
"nextcloud/ocp": "^25.0 || ^26.0 || ^27.0", "nextcloud/ocp": "^25.0 || ^26.0 || ^27.0",
"vimeo/psalm": "^5.0", "vimeo/psalm": "^5.0",
"psr/container": "^1.1.2 || ^2.0.2" "psr/container": "^1.1.2"
}, },
"config": { "config": {
"optimize-autoloader": true, "optimize-autoloader": true,

View File

@ -6,12 +6,6 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\Response;
use OCP\Template; use OCP\Template;
/**
* @template-extends Response<int, array<string, mixed>>
*
* (NC < 28)
* @psalm-suppress TooManyTemplateParams
*/
class NoPermissionResponse extends Response { class NoPermissionResponse extends Response {
public function __construct() { public function __construct() {
parent::__construct(); parent::__construct();

View File

@ -6,12 +6,6 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\Response;
use OCP\Template; use OCP\Template;
/**
* @template-extends Response<int, array<string, mixed>>
*
* (NC < 28)
* @psalm-suppress TooManyTemplateParams
*/
class NotFoundResponse extends Response { class NotFoundResponse extends Response {
public function __construct() { public function __construct() {
parent::__construct(); parent::__construct();