Bitbucket Pipelines配置为yii2。需要github令牌

时间:2016-10-25 11:58:51

标签: yii2 composer-php bitbucket bitbucket-pipelines

我正在尝试为我的项目使用bitbucket管道,我使用简单的配置:

   <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item>
          <bitmap android:src="@drawable/android_red"
            android:gravity="center" />
        </item>
        <item android:top="10dp" android:left="10dp">
          <bitmap android:src="@drawable/android_green"
            android:gravity="center" />
        </item>
        <item android:top="20dp" android:left="20dp">
          <bitmap android:src="@drawable/android_blue"
            android:gravity="center" />
        </item>

但是,在composer intall阶段,我需要一个github令牌,因为yii2在github上。 那么,如何使用此配置运行使用令牌的composer?

1 个答案:

答案 0 :(得分:1)

为Composer设置一些配置应该足够了。链接要使用的命令:API rate limit and OAuth tokens。简单的步骤:

  1. Create an account on Github。您将获得类似 acd276d00a9de5a15743b7a0a33e39c0e7b8aed8 的内容。一定要记下,因为一段时间后你将无法看到它。

  2. 使用Composer终端(例如Git)并输入命令:

    composer config -g github-oauth.github.com <oauthtoken>

  3. <oauthtoken>是您的令牌。

    现在应该进行配置,现在可以让Composer安装。