イントロダクションIntroduction
ArtisanはLaravelを構成しているコマンドラインインターフェイスの名前です。アプリケーション開発時に便利な多くのコマンドを提供しています。パワフルなSymfonyコンソール・コンポーネントで動いています。Artisan is the name of the command-line interface included with Laravel. It provides a number of helpful commands for your use while developing your application. It is driven by the powerful Symfony Console component.
使用法Usage
使用可能な全コマンドをリストするListing All Available Commands
使用可能な全コマンドリストを表示するには、list
コマンドを使用してください。To view a list of all available Artisan commands, you may use the list
command:
php artisan list
コマンドのヘルプスクリーンを表示するViewing The Help Screen For A Command
全てのコマンドは「ヘルプ」スクリーンが用意され、説明と使用できる引数・オプションを表示します。ヘルプスクリーンを表示するには、help
に続いてコマンド名を入力してください。Every command also includes a "help" screen which displays and describes the command's available arguments and options. To view a help screen, simply precede the name of the command with help
:
php artisan help migrate
設定環境を指定するSpecifying The Configuration Environment
コマンドを実行する設定環境を指定するには--env
スイッチを使用します。You may specify the configuration environment that should be used while running a command using the --env
switch:
php artisan migrate --env=local
現在のLaravelバージョンを表示するDisplaying Your Current Laravel Version
インストールしているLaravelのバージョンを確認するには、--version
オプションを指定します。You may also view the current version of your Laravel installation using the --version
option:
php artisan --version