You are here

public function ReleaseNotes::defaultConfiguration in Production check & Production monitor 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ProdCheckBase::defaultConfiguration

File

src/Plugin/ProdCheck/Server/ReleaseNotes.php, line 69

Class

ReleaseNotes
Release notes check

Namespace

Drupal\prod_check\Plugin\ProdCheck\Server

Code

public function defaultConfiguration() {
  $configuration = parent::defaultConfiguration();
  $configuration['files'] = [
    'core/CHANGELOG.txt',
    'core/COPYRIGHT.txt',
    'core/INSTALL.mysql.txt',
    'core/INSTALL.pgsql.txt',
    'core/INSTALL.sqlite.txt',
    'core/INSTALL.txt',
    'core/LICENSE.txt',
    'core/MAINTAINERS.txt',
    'README.txt',
    'core/UPGRADE.txt',
    'themes/README.txt',
    'modules/README.txt',
  ];
  return $configuration;
}