Skip to content

Commit

Permalink
use 1.0.0-beta2 version for composer asset plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangxue committed Sep 27, 2014
1 parent c90df15 commit 6f9d2c6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ addons:

install:
- composer self-update && composer --version
- composer global require "fxp/composer-asset-plugin:1.0.0-beta1"
- composer global require "fxp/composer-asset-plugin:1.0.0-beta2"
- export PATH="$HOME/.composer/vendor/bin:$PATH"
# core framework:
- composer install --prefer-dist
Expand Down
2 changes: 1 addition & 1 deletion apps/advanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ at [getcomposer.org](http://getcomposer.org/doc/00-intro.md#installation-nix).
You can then install the application using the following command:

~~~
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta2"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced
~~~

Expand Down
2 changes: 1 addition & 1 deletion apps/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ at [getcomposer.org](http://getcomposer.org/doc/00-intro.md#installation-nix).
You can then install this application template using the following command:

~~~
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta2"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic basic
~~~

Expand Down
2 changes: 1 addition & 1 deletion docs/guide-zh-CN/start-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

Composer 安装后,切换到一个可通过 Web 访问的目录,执行如下命令即可安装 Yii :

composer global require "fxp/composer-asset-plugin:1.0.0-beta1"
composer global require "fxp/composer-asset-plugin:1.0.0-beta2"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic

第一条命令安装 [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/),它是通过 Composer 管理 bower 和 npm 包所必须的,此命令全局应用,只需执行一次即可。
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/start-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ problems or want to learn more about Composer usage.

With Composer installed, you can install Yii by running the following commands under a Web-accessible folder:

composer global require "fxp/composer-asset-plugin:1.0.0-beta1"
composer global require "fxp/composer-asset-plugin:1.0.0-beta2"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic

The first command installs the [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/)
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/tutorial-advanced-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ curl -sS http://getcomposer.org/installer | php
You can then install the application using the following command:

~~~
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta2"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced /path/to/yii-application
~~~

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/tutorial-start-from-scratch.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ Use the Template
That's all that's required to create a new Yii application template. Now you can create projects using your template:

```
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta2"
php composer.phar create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project
```
2 changes: 1 addition & 1 deletion framework/UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Upgrade from Yii 2.0 Beta
the composer-asset-plugin, *before* you update your project:

```
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta2"
```

You also need to add the following code to your project's `composer.json` file:
Expand Down

0 comments on commit 6f9d2c6

Please sign in to comment.