You are here

protected constant ComposerProjectTemplatesTest::STABILITY_ORDER in Drupal 9

The order of stability strings from least stable to most stable.

This only includes normalized stability strings: i.e., ones that are returned by \Composer\Semver\VersionParser::parseStability().

File

core/tests/Drupal/BuildTests/Composer/Template/ComposerProjectTemplatesTest.php, line 43

Class

ComposerProjectTemplatesTest
Demonstrate that Composer project templates are buildable as patched.

Namespace

Drupal\BuildTests\Composer\Template

Code

protected const STABILITY_ORDER = [
  'dev',
  'alpha',
  'beta',
  'RC',
  'stable',
];