yii2 的 Bitbucket 管道配置。需要 github 个代币

Bitbucket Pipelines config for yii2. Need github token

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

image: phpunit/phpunit:5.0.3

pipelines:
  default:
    - step:
        script: # Modify the commands below to build your repository.
          - composer --version
          - phpunit --version
          - composer global require "fxp/composer-asset-plugin:^1.2.0"
          - composer install
          - php init --env=Development --overwrite=All

但是,在 composer 安装阶段,我需要一个 github 令牌,因为 yii2 在 github 上。 那么,如何使用这个配置 运行 composer with token ?

为 Composer 设置一些配置应该就足够了。 A link 使用什么命令:API rate limit and OAuth tokens。简单步骤:

  1. Create an account on Github。你会得到类似 acd276d00a9de5a15743b7a0a33e39c0e7b8aed8 的东西。一定要记下来,过段时间就看不到了。

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

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

其中 <oauthtoken> 是您的令牌。

现在应该配置好了,Composer 现在应该允许您安装了。