From 35466c0929d547f6bf53b5448eaff349457cd03c Mon Sep 17 00:00:00 2001 From: Jani Mikkonen Date: Thu, 12 Nov 2015 14:25:07 +0200 Subject: [PATCH] Update docs composer-asset-plugin [skip ci] --- docs/guide-es/start-installation.md | 2 +- docs/guide-it/start-installation.md | 2 +- docs/guide-ja/start-installation.md | 2 +- docs/guide-ja/tutorial-start-from-scratch.md | 2 +- docs/guide-pl/start-installation.md | 2 +- docs/guide-pl/tutorial-start-from-scratch.md | 2 +- docs/guide-pt-BR/start-installation.md | 2 +- docs/guide-pt-BR/tutorial-yii-integration.md | 2 +- docs/guide-ru/start-installation.md | 2 +- docs/guide-ru/tutorial-start-from-scratch.md | 2 +- docs/guide-ru/tutorial-yii-integration.md | 2 +- docs/guide-uk/start-installation.md | 2 +- docs/guide-uk/tutorial-start-from-scratch.md | 2 +- docs/guide-vi/start-installation.md | 2 +- docs/guide-zh-CN/start-installation.md | 2 +- docs/internals-ja/git-workflow.md | 2 +- docs/internals/git-workflow.md | 2 +- framework/UPGRADE.md | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/guide-es/start-installation.md b/docs/guide-es/start-installation.md index 8748fe5..2facf9b 100644 --- a/docs/guide-es/start-installation.md +++ b/docs/guide-es/start-installation.md @@ -26,7 +26,7 @@ Si ya tienes composer instalado asegurate que esté actualizado ejecutando `comp Teniendo Composer instalado, puedes instalar Yii ejecutando los siguientes comandos en un directorio accesible vía Web: Nota: es posible que en al ejecutar el primer comando te pida tu username - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic El comando anterior instala Yii dentro del directorio `basic`. diff --git a/docs/guide-it/start-installation.md b/docs/guide-it/start-installation.md index 2685997..8308552 100644 --- a/docs/guide-it/start-installation.md +++ b/docs/guide-it/start-installation.md @@ -27,7 +27,7 @@ Se hai già Composer installato assicurati di avere una versione aggiornata. Puo Una volta installato Composer, puoi installare Yii eseguendo questo comando in una directory accessbile via web: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic Il primo comando installa il [plugin composer asset](https://github.com/francoispluchino/composer-asset-plugin/) diff --git a/docs/guide-ja/start-installation.md b/docs/guide-ja/start-installation.md index fa2549c..425484a 100644 --- a/docs/guide-ja/start-installation.md +++ b/docs/guide-ja/start-installation.md @@ -36,7 +36,7 @@ Composer は `composer self-update` コマンドを実行してアップデー Composer がインストールされたら、ウェブからアクセスできるフォルダで下記のコマンドを実行することによって Yii をインストールすることが出来ます。 - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic 最初のコマンドは [composer アセットプラグイン](https://github.com/francoispluchino/composer-asset-plugin/) をインストールします。 diff --git a/docs/guide-ja/tutorial-start-from-scratch.md b/docs/guide-ja/tutorial-start-from-scratch.md index f22e490..ee4fbf4 100644 --- a/docs/guide-ja/tutorial-start-from-scratch.md +++ b/docs/guide-ja/tutorial-start-from-scratch.md @@ -54,6 +54,6 @@ Yii の新しいプロジェクトテンプレートを作成するのに必要 これで、あなたのテンプレートを使ってプロジェクトを作成することが出来ます。 ``` -composer global require "fxp/composer-asset-plugin:~1.0.3" +composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project ``` diff --git a/docs/guide-pl/start-installation.md b/docs/guide-pl/start-installation.md index db1c2b7..9371acf 100644 --- a/docs/guide-pl/start-installation.md +++ b/docs/guide-pl/start-installation.md @@ -32,7 +32,7 @@ Jeśli posiadałeś już wcześniej zainstalowanego Composer'a, upewnij się, ż Z zainstalowanym Composer'em możesz przejść do instalacji Yii wywołując poniższe komendy w katalogu dostępnym w sieci web: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic Pierwsza komenda instaluje [wtyczkę zasobów](https://github.com/francoispluchino/composer-asset-plugin/), która pozwala na zarządzanie zasobami [Bower'a](http://bower.io) oraz [paczkami zależności NPM](https://www.npmjs.com/) przez Composer. diff --git a/docs/guide-pl/tutorial-start-from-scratch.md b/docs/guide-pl/tutorial-start-from-scratch.md index 81e9c71..303f589 100644 --- a/docs/guide-pl/tutorial-start-from-scratch.md +++ b/docs/guide-pl/tutorial-start-from-scratch.md @@ -51,6 +51,6 @@ Użycie szablonu Tylko tyle jest wymagane, aby stworzyć nowy szablon projektu Yii. Teraz już możesz rozpocząć pracę nad świeżym projektem, używając swojego szablonu, za pomocą komend: ``` -composer global require "fxp/composer-asset-plugin:~1.0.3" +composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist --stability=dev mojafirma/yii2-app-fajna nowy-projekt ``` diff --git a/docs/guide-pt-BR/start-installation.md b/docs/guide-pt-BR/start-installation.md index 8796ccf..12e3f8d 100644 --- a/docs/guide-pt-BR/start-installation.md +++ b/docs/guide-pt-BR/start-installation.md @@ -46,7 +46,7 @@ Você pode atualizar o Composer executando o comando `composer self-update`. Com o Composer instalado, você pode instalar o Yii executando o seguinte comando em um diretório acessível pela Web: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic O primeiro comando instaka o [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/) diff --git a/docs/guide-pt-BR/tutorial-yii-integration.md b/docs/guide-pt-BR/tutorial-yii-integration.md index 5e5dec5..f5d9f5e 100644 --- a/docs/guide-pt-BR/tutorial-yii-integration.md +++ b/docs/guide-pt-BR/tutorial-yii-integration.md @@ -66,7 +66,7 @@ Como o Yii fornece muitas características excelentes, algumas vezes você pode Se o sistema em questão utilizar o Composer para gerenciar suas dependências, você pode simplesmente executar o seguinte comando para instalar o Yii: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer require yiisoft/yii2 composer install diff --git a/docs/guide-ru/start-installation.md b/docs/guide-ru/start-installation.md index 7b40407..17bbee4 100644 --- a/docs/guide-ru/start-installation.md +++ b/docs/guide-ru/start-installation.md @@ -29,7 +29,7 @@ После установки Composer устанавливать Yii можно запустив следующую команду в папке доступной через веб: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic Первая команда устанавливает [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/), diff --git a/docs/guide-ru/tutorial-start-from-scratch.md b/docs/guide-ru/tutorial-start-from-scratch.md index e27bacd..9edccde 100644 --- a/docs/guide-ru/tutorial-start-from-scratch.md +++ b/docs/guide-ru/tutorial-start-from-scratch.md @@ -46,6 +46,6 @@ git clone git@github.com:yiisoft/yii2-app-basic.git Это все, что требуется для создания нового шаблона проекта в Yii. Сейчас вы можете создавать проекты, использующие ваш шаблон: ``` -composer global require "fxp/composer-asset-plugin:~1.0.3" +composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project ``` diff --git a/docs/guide-ru/tutorial-yii-integration.md b/docs/guide-ru/tutorial-yii-integration.md index 7de3243..2f9dbdf 100644 --- a/docs/guide-ru/tutorial-yii-integration.md +++ b/docs/guide-ru/tutorial-yii-integration.md @@ -63,7 +63,7 @@ Yii::$classMap['Class2'] = 'path/to/Class2.php'; Если сторонняя система использует для управления зависимостями Composer, Yii можно просто установить с помощью следующих команд: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer require "yiisoft/yii2:*" composer install diff --git a/docs/guide-uk/start-installation.md b/docs/guide-uk/start-installation.md index b10cee0..d1998c1 100644 --- a/docs/guide-uk/start-installation.md +++ b/docs/guide-uk/start-installation.md @@ -37,7 +37,7 @@ Після встановлення Composer, встановити Yii можна виконавши наступну команду з директорії, яка доступна через Web: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic Перша команда встановить [плагін ресурсів composer (composer-asset-plugin)](https://github.com/francoispluchino/composer-asset-plugin/), diff --git a/docs/guide-uk/tutorial-start-from-scratch.md b/docs/guide-uk/tutorial-start-from-scratch.md index 0f6bef1..dd7d25d 100644 --- a/docs/guide-uk/tutorial-start-from-scratch.md +++ b/docs/guide-uk/tutorial-start-from-scratch.md @@ -57,6 +57,6 @@ git clone git@github.com:yiisoft/yii2-app-basic.git Тепер ви можете створювати проекти, використовуючи свій шаблон: ``` -composer global require "fxp/composer-asset-plugin:~1.0.3" +composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project ``` \ No newline at end of file diff --git a/docs/guide-vi/start-installation.md b/docs/guide-vi/start-installation.md index 55cbc95..13d765e 100644 --- a/docs/guide-vi/start-installation.md +++ b/docs/guide-vi/start-installation.md @@ -36,7 +36,7 @@ Nếu bạn đã cài Composer rồi, hãy chắc chắn rằng bạn đang sử Sau khi cài đặt Composer, bạn có thể cài đặt Yii bằng cách chạy lệnh sau ở thư mục Web mà ứng dụng cần chạy: - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic Câu lệnh đầu tiên sẽ cài đặt [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/) diff --git a/docs/guide-zh-CN/start-installation.md b/docs/guide-zh-CN/start-installation.md index 8d0f272..c03621c 100644 --- a/docs/guide-zh-CN/start-installation.md +++ b/docs/guide-zh-CN/start-installation.md @@ -22,7 +22,7 @@ Composer 安装后,切换到一个可通过 Web 访问的目录,执行如下命令即可安装 Yii : - composer global require "fxp/composer-asset-plugin:~1.0.3" + composer global require "fxp/composer-asset-plugin:~1.1.0" composer create-project --prefer-dist yiisoft/yii2-app-basic basic 第一条命令安装 [Composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/),它是通过 Composer 管理 bower 和 npm 包所必须的,此命令全局生效,一劳永逸。 diff --git a/docs/internals-ja/git-workflow.md b/docs/internals-ja/git-workflow.md index 681a7ca..84f1526 100644 --- a/docs/internals-ja/git-workflow.md +++ b/docs/internals-ja/git-workflow.md @@ -33,7 +33,7 @@ git remote add upstream git://github.com/yiisoft/yii2.git - `composer update` を実行して、依存パッケージをインストールします ([composer をグローバルにインストール](https://getcomposer.org/doc/00-intro.md#globally) したものと仮定しています)。 -> Note|注意: `Problem 1 The requested package bower-asset/jquery could not be found in any version, there may be a typo in the package name.` というようなエラーが生ずる場合は、`composer global require "fxp/composer-asset-plugin:~1.0.3"` を実行する必要があります。 +> Note|注意: `Problem 1 The requested package bower-asset/jquery could not be found in any version, there may be a typo in the package name.` というようなエラーが生ずる場合は、`composer global require "fxp/composer-asset-plugin:~1.1.0"` を実行する必要があります。 - `php build/build dev/app basic` を実行して、ベーシックアプリケーションをクローンし、その依存パッケージをインストールします。 このコマンドは外部 composer パッケージは通常どおりインストールしますが、yii2 レポジトリは現在チェックアウトされているものをリンクします。 diff --git a/docs/internals/git-workflow.md b/docs/internals/git-workflow.md index e87c297..cfefa4e 100644 --- a/docs/internals/git-workflow.md +++ b/docs/internals/git-workflow.md @@ -35,7 +35,7 @@ The following steps are not necessary if you want to work only on translations o - run `composer update` to install dependencies (assuming you have [composer installed globally](https://getcomposer.org/doc/00-intro.md#globally)). -> Note: If you see errors like `Problem 1 The requested package bower-asset/jquery could not be found in any version, there may be a typo in the package name.`, you will need to run `composer global require "fxp/composer-asset-plugin:~1.0.3"` +> Note: If you see errors like `Problem 1 The requested package bower-asset/jquery could not be found in any version, there may be a typo in the package name.`, you will need to run `composer global require "fxp/composer-asset-plugin:~1.1.0"` - run `php build/build dev/app basic` to clone the basic app and install composer dependencies for the basic app. This command will install foreign composer packages as normal but will link the yii2 repo to diff --git a/framework/UPGRADE.md b/framework/UPGRADE.md index c2b9f3a..ccad8a6 100644 --- a/framework/UPGRADE.md +++ b/framework/UPGRADE.md @@ -11,7 +11,7 @@ for both A and B. Make sure you have global install of latest version of composer asset plugin: ``` -php composer.phar global require "fxp/composer-asset-plugin" +php composer.phar global require "fxp/composer-asset-plugin:~1.1.0" ``` Upgrade from Yii 2.0.6