Readouble

Laravel 5.0 インストール

コンポーサーのインストールInstall Composer

LaravelはComposerを依存パッケージの管理に使用しています。ですから、Laravelを始める前に、自分の開発機にComposerを確実にインストールしておいてください。Laravel utilizes Composer[http://getcomposer.org] to manage its dependencies. So, before using Laravel, you will need to make sure you have Composer installed on your machine.

LaravelのインストールInstall Laravel

LaravelインストーラーによるインストールVia Laravel Installer

最初にComposerを使用し、Laravelインストーラーをダウンロードします。First, download the Laravel installer using Composer.

composer global require "laravel/installer=~1.1"

laravelコマンドが端末で実行できるように、~/.composer/vendor/binディレクトリーへ実行PATHを通してください。Make sure to place the ~/.composer/vendor/bin directory in your PATH so the laravel executable can be located by your system.

インストールが完了したら、あとはlaravel newコマンドを実行するだけで、指定したディレクトリーに真新しいLaravelプロジェクトが作成されます。例えば、laravel new blogと打ち込めば、blogというディレクトリーに、必要な依存パッケージと一緒に、Laravelがインストールされます。このインストール方法は、Composerを使うよりも多少早いです。Once installed, the simple laravel new command will create a fresh Laravel installation in the directory you specify. For instance, laravel new blog would create a directory named blog containing a fresh Laravel installation with all dependencies installed. This method of installation is much faster than installing via Composer:

laravel new blog

Composer Create-ProjectによるインストールVia Composer Create-Project

また、ターミナルでコンポーサーのcreate-projectコマンドを実行して、Laravelをインストールすることもできます。You may also install Laravel by issuing the Composer create-project command in your terminal:

composer create-project laravel/laravel --prefer-dist

スキャフォールドScaffolding

Laravelにはユーザー登録と認証のためのスキャフォールドが含まれています。このスキャフォールドファイルを削除するには、fresh Artisanコマンドを使います。Laravel ships with scaffolding for user registration and authentication. If you would like to remove this scaffolding, use the fresh Artisan command:

php artisan fresh

サーバー要件Server Requirements

Laravelフレームワークには、多少のシステム動作要件があります。The Laravel framework has a few system requirements:

  • PHP バージョン5.4以上PHP >= 5.4
  • Mcrypt PHP拡張Mcrypt PHP Extension
  • OpenSSL PHP拡張OpenSSL PHP Extension
  • Mbstring PHP拡張Mbstring PHP Extension
  • Tokenizer PHP拡張Tokenizer PHP Extension

いくつかのOSでは、PHP 5.5を使用する場合、PHP JSON拡張をインストールする必要があります。Ubuntuを使用する場合、apt-get install php5-jsonでインストールされます。As of PHP 5.5, some OS distributions may require you to manually install the PHP JSON extension. When using Ubuntu, this can be done via apt-get install php5-json.

設定Configuration

インストール後に最初に行うべきことは、アプリケーションキーへランダム文字列をセットすることです。コンポーサーでLaravelをインストールした場合、key:generateコマンドにより、多分既に設定されているでしょう。The first thing you should do after installing Laravel is set your application key to a random string. If you installed Laravel via Composer, this key has probably already been set for you by the key:generate command.

**通常、この文字列は32桁です。キーは.env設定ファイルへ設定されます。アプリケーションキーが設置されていないと、セッションや他の暗号化されるデーターは安全ではありません!Typically, this string should be 32 characters long. The key can be set in the .env environment file. If the application key is not set, your user sessions and other encrypted data will not be secure!

Laravelのその他の設定は、最初に指定する必要がありません。すぐに開発を開始しても良いのです!しかし、config/app.phpファイルと、その中の記述を確認しておいたほうが良いでしょう。アプリケーションに合わせ変更したい、timezonelocalのような多くのオプションが含まれています。Laravel needs almost no other configuration out of the box. You are free to get started developing! However, you may wish to review the config/app.php file and its documentation. It contains several options such as timezone and locale that you may wish to change according to your application.

Laravelをインストールし終えたら、ローカル環境の設定も済ませてください。Once Laravel is installed, you should also configure your local environment[/docs/{{version}}/configuration#environment-configuration].

注意: 実働アプリケーションに対しては、app.debugtrueに設定してはいけません。Note: You should never have the app.debug configuration option set to true for a production application.

パーミッションPermissions

Laravelではパーミッションの設定が必要です。storagevendorフォルダー下にWebサーバーからの書き込みアクセスを設定してください。Laravel may require some permissions to be configured: folders within storage and vendor require write access by the web server.

きれいなURLPretty URLs

ApacheApache

index.phpをURLへ付けなくても利用できるようにするため、public/.htaccessファイルが最初からフレームワークへ含まれています。Apacheを利用し、Laravelアプリケーションを動かす場合、mod_rewriteモジュールを確実に有効にしてください。The framework ships with a public/.htaccess file that is used to allow URLs without index.php. If you use Apache to serve your Laravel application, be sure to enable the mod_rewrite module.

Laravelに付属している、.htaccessファイルが、皆さんのApache環境で動作しない場合は、以下の設定を試してください。If the .htaccess file that ships with Laravel does not work with your Apache installation, try this one:

Options  FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

NginxNginx

Nginxでは、以下の仮想ホストの設定により、「きれいな」URLが使えるようになります。On Nginx, the following directive in your site configuration will allow "pretty" URLs:

location / {
	try_files $uri $uri/ /index.php?$query_string;
}

もちろん、Homesteadを使う場合は、きれいなURLが自動的に設定されます。Of course, when using Homestead[/docs/{{version}}/homestead], pretty URLs will be configured automatically.

章選択

Artisan CLI

設定

明暗テーマ
light_mode
dark_mode
brightness_auto システム設定に合わせる
テーマ選択
photo_size_select_actual デフォルト
photo_size_select_actual モノクローム(白黒)
photo_size_select_actual Solarized風
photo_size_select_actual GitHub風(青ベース)
photo_size_select_actual Viva(黄緑ベース)
photo_size_select_actual Happy(紫ベース)
photo_size_select_actual Mint(緑ベース)
コードハイライトテーマ選択

明暗テーマごとに、コードハイライトのテーマを指定できます。

テーマ配色確認
スクリーン表示幅
640px
80%
90%
100%

768px以上の幅があるときのドキュメント部分表示幅です。

インデント
無し
1rem
2rem
3rem
原文確認
原文を全行表示
原文を一行ずつ表示
使用しない

※ 段落末のEボタンへカーソルオンで原文をPopupします。

Diff表示形式
色分けのみで区別
行頭の±で区別
削除線と追記で区別

※ [tl!…]形式の挿入削除行の表示形式です。

テストコード表示
両コード表示
Pestのみ表示
PHPUnitのみ表示
和文変換

対象文字列と置換文字列を半角スペースで区切ってください。(最大5組各10文字まで)

本文フォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

コードフォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

保存内容リセット

localStrageに保存してある設定項目をすべて削除し、デフォルト状態へ戻します。

ヘッダー項目移動

キーボード操作