mirror of https://github.com/sualko/cloud_bbb
feat: bump Nextcloud dependency
parent
6f643cfed3
commit
02bcd21568
|
@ -12,7 +12,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.3', '7.4']
|
php-versions: ['7.3', '7.4']
|
||||||
nextcloud-versions: ['stable19', 'stable20', 'stable21', 'master']
|
nextcloud-versions: ['stable19', 'stable20', 'stable21']
|
||||||
include:
|
include:
|
||||||
- php-versions: '7.2'
|
- php-versions: '7.2'
|
||||||
nextcloud-versions: 'stable19'
|
nextcloud-versions: 'stable19'
|
||||||
|
@ -20,8 +20,6 @@ jobs:
|
||||||
nextcloud-versions: 'stable20'
|
nextcloud-versions: 'stable20'
|
||||||
- php-versions: '8.0'
|
- php-versions: '8.0'
|
||||||
nextcloud-versions: 'stable21'
|
nextcloud-versions: 'stable21'
|
||||||
- php-versions: '8.0'
|
|
||||||
nextcloud-versions: 'master'
|
|
||||||
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
|
||||||
|
|
|
@ -40,7 +40,7 @@ Developer wanted! If you have time it would be awesome if you could help to enha
|
||||||
<lib>curl</lib>
|
<lib>curl</lib>
|
||||||
<lib>mbstring</lib>
|
<lib>mbstring</lib>
|
||||||
<lib>SimpleXML</lib>
|
<lib>SimpleXML</lib>
|
||||||
<nextcloud min-version="18" max-version="20"/>
|
<nextcloud min-version="19" max-version="21"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<settings>
|
<settings>
|
||||||
<admin>OCA\BigBlueButton\Settings\Admin</admin>
|
<admin>OCA\BigBlueButton\Settings\Admin</admin>
|
||||||
|
|
|
@ -28,7 +28,6 @@ class Version000000Date20200416124731 extends SimpleMigrationStep {
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
]);
|
]);
|
||||||
$table->addColumn('uid', 'string', [
|
$table->addColumn('uid', 'string', [
|
||||||
'unique' => true,
|
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
'length' => 64
|
'length' => 64
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -31,7 +31,6 @@ class Version000000Date20200826100844 extends SimpleMigrationStep {
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
]);
|
]);
|
||||||
$table->addColumn('group_id', 'string', [
|
$table->addColumn('group_id', 'string', [
|
||||||
'unique' => true,
|
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
'length' => 200,
|
'length' => 200,
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -29,7 +29,6 @@ class Version000000Date20210122164501 extends SimpleMigrationStep {
|
||||||
if (!$table->hasColumn('moderator_token')) {
|
if (!$table->hasColumn('moderator_token')) {
|
||||||
$table->addColumn('moderator_token', 'string', [
|
$table->addColumn('moderator_token', 'string', [
|
||||||
'notnull' => false,
|
'notnull' => false,
|
||||||
'unique' => true,
|
|
||||||
'length' => 64
|
'length' => 64
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue