Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
38c04b3d
Commit
38c04b3d
authored
Nov 23, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #6189
parent
90c9b863
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
14 deletions
+14
-14
.travis.yml
.travis.yml
+1
-1
README.md
apps/advanced/README.md
+1
-1
README.md
apps/basic/README.md
+1
-1
start-installation.md
docs/guide-es/start-installation.md
+1
-1
start-installation.md
docs/guide-it/start-installation.md
+1
-1
start-installation.md
docs/guide-ja/start-installation.md
+1
-1
start-installation.md
docs/guide-ru/start-installation.md
+1
-1
tutorial-advanced-app.md
docs/guide-ru/tutorial-advanced-app.md
+1
-1
start-installation.md
docs/guide-zh-CN/start-installation.md
+1
-1
tutorial-advanced-app.md
docs/guide/tutorial-advanced-app.md
+1
-1
tutorial-start-from-scratch.md
docs/guide/tutorial-start-from-scratch.md
+1
-1
tutorial-yii-integration.md
docs/guide/tutorial-yii-integration.md
+1
-1
README.md
framework/README.md
+1
-1
UPGRADE.md
framework/UPGRADE.md
+1
-1
No files found.
.travis.yml
View file @
38c04b3d
...
...
@@ -39,7 +39,7 @@ addons:
install
:
-
travis_retry composer self-update && composer --version
-
travis_retry composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
-
travis_retry composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
-
export PATH="$HOME/.composer/vendor/bin:$PATH"
# core framework:
-
travis_retry composer install --prefer-dist --no-interaction
...
...
apps/advanced/README.md
View file @
38c04b3d
...
...
@@ -74,7 +74,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-beta
3
"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced
~~~
...
...
apps/basic/README.md
View file @
38c04b3d
...
...
@@ -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-beta
3
"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic basic
~~~
...
...
docs/guide-es/start-installation.md
View file @
38c04b3d
...
...
@@ -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.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
El comando anterior instala Yii dentro del directorio
`basic`
.
...
...
docs/guide-it/start-installation.md
View file @
38c04b3d
...
...
@@ -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.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
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/
)
...
...
docs/guide-ja/start-installation.md
View file @
38c04b3d
...
...
@@ -25,7 +25,7 @@ Composer 縺ッ `composer self-update` 繧ウ繝槭Φ繝峨r襍ー繧峨○縺ヲ繧「繝繝繝
Composer がインストールされたら、ウェブからアクセスできるフォルダーで下記のコマンドを実行することによって Yii をインストールすることが出来ます:
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
最初のコマンドは
[
composer asset plugin
](
https://github.com/francoispluchino/composer-asset-plugin/
)
をインストールします。
...
...
docs/guide-ru/start-installation.md
View file @
38c04b3d
...
...
@@ -29,7 +29,7 @@
После установки Composer устанавливать Yii можно запустив следующую команду в папке доступной через веб:
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
Первая команда устанавливает [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/),
...
...
docs/guide-ru/tutorial-advanced-app.md
View file @
38c04b3d
...
...
@@ -19,7 +19,7 @@
Если Composer установлен, вы можете установить приложение используя следующие команды:
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-advanced yii-application
Первая команда установит плагин
[
composer asset plugin
](
https://github.com/francoispluchino/composer-asset-plugin/
)
,
...
...
docs/guide-zh-CN/start-installation.md
View file @
38c04b3d
...
...
@@ -22,7 +22,7 @@
Composer 安装后,切换到一个可通过 Web 访问的目录,执行如下命令即可安装 Yii :
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
第一条命令安装
[
Composer asset plugin
](
https://github.com/francoispluchino/composer-asset-plugin/
)
,它是通过 Composer 管理 bower 和 npm 包所必须的,此命令全局生效,一劳永逸。
...
...
docs/guide/tutorial-advanced-app.md
View file @
38c04b3d
...
...
@@ -17,7 +17,7 @@ If you do not have [Composer](http://getcomposer.org/), follow the instructions
With Composer installed, you can then install the application using the following commands:
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist yiisoft/yii2-app-advanced yii-application
The first command installs the
[
composer asset plugin
](
https://github.com/francoispluchino/composer-asset-plugin/
)
...
...
docs/guide/tutorial-start-from-scratch.md
View file @
38c04b3d
...
...
@@ -50,6 +50,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:
```
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project
```
docs/guide/tutorial-yii-integration.md
View file @
38c04b3d
...
...
@@ -82,7 +82,7 @@ take two steps: install Yii, and bootstrap Yii.
If the third-party system uses Composer to manage its dependencies, you can simply run the following commands
to install Yii:
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer require "yiisoft/yii2:*"
composer install
...
...
framework/README.md
View file @
38c04b3d
...
...
@@ -12,7 +12,7 @@ The preferred way to install the Yii framework is through [composer](http://getc
Either run
```
composer global require "fxp/composer-asset-plugin:1.0.0-beta
3
"
composer global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
composer require --prefer-dist "yiisoft/yii2 *"
```
...
...
framework/UPGRADE.md
View file @
38c04b3d
...
...
@@ -55,7 +55,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-beta
3
"
php composer.phar global require "fxp/composer-asset-plugin:1.0.0-beta
4
"
```
You also need to add the following code to your project's
`composer.json`
file:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment