當前位置: 首頁>>代碼示例>>PHP>>正文


PHP VersionParser::normalizeBranch方法代碼示例

本文整理匯總了PHP中Composer\Package\Version\VersionParser::normalizeBranch方法的典型用法代碼示例。如果您正苦於以下問題:PHP VersionParser::normalizeBranch方法的具體用法?PHP VersionParser::normalizeBranch怎麽用?PHP VersionParser::normalizeBranch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Composer\Package\Version\VersionParser的用法示例。


在下文中一共展示了VersionParser::normalizeBranch方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validateBranch

    /**
     * Validates the branch.
     *
     * @param string             $branch
     * @param VersionParser|null $parser
     *
     * @return false|string
     */
    public static function validateBranch($branch, VersionParser $parser = null)
    {
        if (null === $parser) {
            $parser = new VersionParser();
        }

        $normalize = $parser->normalizeBranch($branch);

        if (false !== strpos($normalize, '.9999999-dev')) {
            return false;
        }

        return $normalize;
    }
開發者ID:pombredanne,項目名稱:ArcherSys,代碼行數:22,代碼來源:Validator.php

示例2: guessSvnVersion

 private function guessSvnVersion(array $packageConfig, $path)
 {
     SvnUtil::cleanEnv();
     // try to fetch current version from svn
     if (0 === $this->process->execute('svn info --xml', $output, $path)) {
         $trunkPath = isset($packageConfig['trunk-path']) ? preg_quote($packageConfig['trunk-path'], '#') : 'trunk';
         $branchesPath = isset($packageConfig['branches-path']) ? preg_quote($packageConfig['branches-path'], '#') : 'branches';
         $tagsPath = isset($packageConfig['tags-path']) ? preg_quote($packageConfig['tags-path'], '#') : 'tags';
         $urlPattern = '#<url>.*/(' . $trunkPath . '|(' . $branchesPath . '|' . $tagsPath . ')/(.*))</url>#';
         if (preg_match($urlPattern, $output, $matches)) {
             if (isset($matches[2]) && ($branchesPath === $matches[2] || $tagsPath === $matches[2])) {
                 // we are in a branches path
                 $version = $this->versionParser->normalizeBranch($matches[3]);
                 if ('9999999-dev' === $version) {
                     $version = 'dev-' . $matches[3];
                 }
                 return $version;
             }
             return $this->versionParser->normalize(trim($matches[1]));
         }
     }
 }
開發者ID:ncusoho,項目名稱:composer,代碼行數:22,代碼來源:VersionGuesser.php

示例3: testNormalizeBranch

 /**
  * @dataProvider successfulNormalizedBranches
  */
 public function testNormalizeBranch($input, $expected)
 {
     $parser = new VersionParser();
     $this->assertSame((string) $expected, (string) $parser->normalizeBranch($input));
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:8,代碼來源:VersionParserTest.php

示例4: getVersionAlias

 /**
  * @return string
  */
 public function getVersionAlias()
 {
     $extra = $this->getExtra();
     if (isset($extra['branch-alias'][$this->getVersion()])) {
         $parser = new VersionParser();
         $version = $parser->normalizeBranch(str_replace('-dev', '', $extra['branch-alias'][$this->getVersion()]));
         return preg_replace('{(\\.9{7})+}', '.x', $version);
     }
     return '';
 }
開發者ID:rdohms,項目名稱:packagist,代碼行數:13,代碼來源:Version.php


注:本文中的Composer\Package\Version\VersionParser::normalizeBranch方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。