diff --git a/.travis.yml b/.travis.yml index b59972ca9e..75f70e73e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ addons: install: - composer self-update && composer --version - - composer global require "fxp/composer-asset-plugin:1.0.*@dev" + - composer global require "fxp/composer-asset-plugin:1.0.0-beta1" - export PATH="$HOME/.composer/vendor/bin:$PATH" # core framework: - composer install --prefer-dist diff --git a/apps/advanced/README.md b/apps/advanced/README.md index a66505664f..a29afa919a 100644 --- a/apps/advanced/README.md +++ b/apps/advanced/README.md @@ -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.*@dev" +php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1" php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced ~~~ diff --git a/apps/basic/README.md b/apps/basic/README.md index bef61bd595..b4f20c83f1 100644 --- a/apps/basic/README.md +++ b/apps/basic/README.md @@ -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.*@dev" +php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1" php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic basic ~~~ diff --git a/docs/guide/start-installation.md b/docs/guide/start-installation.md index c849b91d01..08ef073257 100644 --- a/docs/guide/start-installation.md +++ b/docs/guide/start-installation.md @@ -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.*@dev" + composer global require "fxp/composer-asset-plugin:1.0.0-beta1" 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/) diff --git a/docs/guide/tutorial-advanced-app.md b/docs/guide/tutorial-advanced-app.md index a5db6a5037..59546bb520 100644 --- a/docs/guide/tutorial-advanced-app.md +++ b/docs/guide/tutorial-advanced-app.md @@ -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.*@dev" +php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1" php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced /path/to/yii-application ~~~ diff --git a/docs/guide/tutorial-start-from-scratch.md b/docs/guide/tutorial-start-from-scratch.md index 42f2098cad..6d8408130b 100644 --- a/docs/guide/tutorial-start-from-scratch.md +++ b/docs/guide/tutorial-start-from-scratch.md @@ -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.*@dev" +php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1" php composer.phar create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project ``` diff --git a/framework/UPGRADE.md b/framework/UPGRADE.md index 3d3d2a2762..2b890ece64 100644 --- a/framework/UPGRADE.md +++ b/framework/UPGRADE.md @@ -16,7 +16,7 @@ Upgrade from Yii 2.0 Beta the composer-asset-plugin: ``` - php composer.phar global require "fxp/composer-asset-plugin:1.0.*@dev" + php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta1" ``` You also need to add the following code to your project's `composer.json` file: