mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/17049] Add migration for exts_composer_minimum_stability config entry
PHPBB3-17049
This commit is contained in:
parent
101b7debd4
commit
9340ffa557
1 changed files with 36 additions and 0 deletions
36
phpBB/phpbb/db/migration/data/v400/extensions_composer_3.php
Normal file
36
phpBB/phpbb/db/migration/data/v400/extensions_composer_3.php
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* This file is part of the phpBB Forum Software package.
|
||||||
|
*
|
||||||
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||||
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see
|
||||||
|
* the docs/CREDITS.txt file.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace phpbb\db\migration\data\v400;
|
||||||
|
|
||||||
|
use phpbb\db\migration\migration;
|
||||||
|
|
||||||
|
class extensions_composer_3 extends migration
|
||||||
|
{
|
||||||
|
public function effectively_installed(): bool
|
||||||
|
{
|
||||||
|
return $this->config->offsetExists('exts_composer_minimum_stability');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update_data(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
['config.add', ['exts_composer_minimum_stability', 'stable']],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function depends_on(): array
|
||||||
|
{
|
||||||
|
return ['\phpbb\db\migration\data\v400\extensions_composer'];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue