You are here

public function DokuWikiInstallerTest::packageNameInflectionProvider in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php \Composer\Installers\Test\DokuWikiInstallerTest::packageNameInflectionProvider()

File

vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php, line 34

Class

DokuWikiInstallerTest

Namespace

Composer\Installers\Test

Code

public function packageNameInflectionProvider() {
  return array(
    array(
      'dokuwiki-plugin',
      'dokuwiki-test-plugin',
      'test',
    ),
    array(
      'dokuwiki-plugin',
      'test-plugin',
      'test',
    ),
    array(
      'dokuwiki-plugin',
      'dokuwiki_test',
      'test',
    ),
    array(
      'dokuwiki-plugin',
      'test',
      'test',
    ),
    array(
      'dokuwiki-plugin',
      'test-template',
      'test-template',
    ),
    array(
      'dokuwiki-template',
      'dokuwiki-test-template',
      'test',
    ),
    array(
      'dokuwiki-template',
      'test-template',
      'test',
    ),
    array(
      'dokuwiki-template',
      'dokuwiki_test',
      'test',
    ),
    array(
      'dokuwiki-template',
      'test',
      'test',
    ),
    array(
      'dokuwiki-template',
      'test-plugin',
      'test-plugin',
    ),
  );
}