mirror of https://github.com/sualko/cloud_bbb
Compare commits
11 Commits
6d8715872b
...
dc1021ef93
Author | SHA1 | Date |
---|---|---|
dependabot[bot] | dc1021ef93 | |
Baptiste Fotia | c2e61304c1 | |
Sébastien Marinier | c5f8eab5e5 | |
Sebastien Marinier | 632ea4a0f5 | |
Sébastien Marinier | e70ddcc322 | |
Sebastien Marinier | 6226921652 | |
Sebastien Marinier | bbf0abfa75 | |
Sebastien Marinier | 63982ac2e7 | |
Sebastien Marinier | 9f2d820d63 | |
Sebastien Marinier | 9fd051ac3b | |
dependabot[bot] | 6ab9b3739e |
|
@ -12,7 +12,10 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
php-versions: ['8.0', '8.1', '8.2']
|
||||
nextcloud-versions: ['stable26', 'stable27', 'stable28']
|
||||
nextcloud-versions: ['stable26', 'stable27', 'stable28', 'stable29', 'stable30']
|
||||
exclude:
|
||||
- php-versions: '8.0'
|
||||
nextcloud-versions: 'stable30'
|
||||
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
|
||||
env:
|
||||
CI: true
|
||||
|
|
|
@ -6,7 +6,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ocp-version: [ '^28', '^27', '^26']
|
||||
ocp-version: [ "^30", "^29", '^28', '^27', '^26']
|
||||
include:
|
||||
- psrcontainer: "psr/container"
|
||||
- psrcontainer: "psr/container:^1.1.2"
|
||||
ocp-version: '^26'
|
||||
name: Nextcloud ${{ matrix.ocp-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
@ -21,7 +25,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: composer i
|
||||
- name: Install dependencies
|
||||
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} symfony/service-contracts
|
||||
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} ${{ matrix.psrcontainer }} symfony/service-contracts
|
||||
- name: Run coding standards check
|
||||
run: composer run psalm
|
||||
|
||||
|
|
|
@ -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.*
|
||||
]]></description>
|
||||
<version>2.7.2</version>
|
||||
<version>2.7.3</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="cloud_bbb@arawa.fr" homepage="https://arawa.fr/">Arawa</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>mbstring</lib>
|
||||
<lib>SimpleXML</lib>
|
||||
<nextcloud min-version="26" max-version="28"/>
|
||||
<nextcloud min-version="26" max-version="30"/>
|
||||
</dependencies>
|
||||
<commands>
|
||||
<command>OCA\BigBlueButton\Command\ClearAvatarCache</command>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"phpstan/phpstan": "^0.12.29",
|
||||
"nextcloud/ocp": "^25.0 || ^26.0 || ^27.0",
|
||||
"vimeo/psalm": "^5.0",
|
||||
"psr/container": "^1.1.2"
|
||||
"psr/container": "^1.1.2 || ^2.0.2"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
|
|
|
@ -6,6 +6,12 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
|
|||
use OCP\AppFramework\Http\Response;
|
||||
use OCP\Template;
|
||||
|
||||
/**
|
||||
* @template-extends Response<int, array<string, mixed>>
|
||||
*
|
||||
* (NC < 28)
|
||||
* @psalm-suppress TooManyTemplateParams
|
||||
*/
|
||||
class NoPermissionResponse extends Response {
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
|
|
|
@ -6,6 +6,12 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
|
|||
use OCP\AppFramework\Http\Response;
|
||||
use OCP\Template;
|
||||
|
||||
/**
|
||||
* @template-extends Response<int, array<string, mixed>>
|
||||
*
|
||||
* (NC < 28)
|
||||
* @psalm-suppress TooManyTemplateParams
|
||||
*/
|
||||
class NotFoundResponse extends Response {
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
|
|
16
yarn.lock
16
yarn.lock
|
@ -4840,10 +4840,10 @@ nan@~2.14.0:
|
|||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19"
|
||||
integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==
|
||||
|
||||
nanoid@^3.3.1:
|
||||
version "3.3.1"
|
||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
|
||||
integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==
|
||||
nanoid@^3.3.6:
|
||||
version "3.3.6"
|
||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
|
||||
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
|
||||
|
||||
natural-compare@^1.4.0:
|
||||
version "1.4.0"
|
||||
|
@ -5382,11 +5382,11 @@ postcss-value-parser@^4.2.0:
|
|||
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
||||
|
||||
postcss@^8.4.6, postcss@^8.4.7:
|
||||
version "8.4.12"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905"
|
||||
integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==
|
||||
version "8.4.31"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
|
||||
integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
|
||||
dependencies:
|
||||
nanoid "^3.3.1"
|
||||
nanoid "^3.3.6"
|
||||
picocolors "^1.0.0"
|
||||
source-map-js "^1.0.2"
|
||||
|
||||
|
|
Loading…
Reference in New Issue