Fixed wrong instruction.

This commit is contained in:
Qiang Xue
2014-09-16 20:58:57 -04:00
parent 999a39d004
commit b1bb796ee0
7 changed files with 19 additions and 8 deletions

View File

@ -39,7 +39,7 @@ addons:
install:
- composer self-update && composer --version
- composer global require "fxp/composer-asset-plugin:~1.0"
- composer global require "fxp/composer-asset-plugin:1.0.*@dev"
- export PATH="$HOME/.composer/vendor/bin:$PATH"
# core framework:
- composer install --prefer-dist

View File

@ -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"
php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced
~~~

View File

@ -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"
php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic basic
~~~

View File

@ -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"
composer global require "fxp/composer-asset-plugin:1.0.*@dev"
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/)

View File

@ -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"
php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced /path/to/yii-application
~~~

View File

@ -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"
php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev"
php composer.phar create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project
```

View File

@ -12,11 +12,22 @@ for both A and B.
Upgrade from Yii 2.0 Beta
-------------------------
* If you are using Composer to install Yii, you should run the following command first (once for all) to install
* If you are using Composer to upgrade Yii, you should run the following command first (once for all) to install
the composer-asset-plugin:
```
php composer.phar global require "fxp/composer-asset-plugin:~1.0"
php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev"
```
You also need to add the following code to your project's `composer.json` file:
```json
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
```
* If you used `clearAll()` or `clearAllAssignments()` of `yii\rbac\DbManager`, you should replace