public function DokuWikiInstallerTest::packageNameInflectionProvider in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Namespace
Composer\Installers\TestCode
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',
),
);
}