Skip to content

Instantly share code, notes, and snippets.

@mamor
Last active January 6, 2016 05:52
Show Gist options
  • Save mamor/4986939 to your computer and use it in GitHub Desktop.
Save mamor/4986939 to your computer and use it in GitHub Desktop.
PhpStorm + FuelPHPの設定メモ

PhpStorm + FuelPHPの設定メモ

FuelPHPはほとんど関係ない内容になっていきそうです...

PHPUnitを設定する

  1. Project Settings > PHP で"Interpreter"を正しく設定、"OK"を押下
  2. Run > Edit Configurations...と進む
  3. 左上の"+"ボタンを押下、"PHPUnit"を選択
  4. "Name"に任意の名前を入力
  5. "Test scope"で"Defined in the configuration file"を選択
  6. "Use alternative configuration file"にチェック、fuel/core/phpunit.xmlを選択
  7. "OK"を押下
  8. Run (あるいはプロジェクトの右クリック) > Run 'xxx' でユニットテストが実行されることを確認
  • Run 'xxx' with Coverage でカバレッジも出力される

インデントをタブにする

Project Settings > Code Style > PHP "Tabs and Indents"の"Use tab character"にチェック

行番号を表示する

IDE Settings > Editor > Appearance "Show line numbers"にチェック

空白を表示する

IDE Settings > Editor > Appearance "Show whitespaces"にチェック

Command Line Tools Consoleのメモ

explorer . # Winでエクスプローラを起動

Command Line Tool Supportのメモ

  1. Custom frameworkを選択
  2. "Framework name"は適当に
  3. "Tool path"は実行ファイルのパス
  4. "Alias"はCommand Line Tools Consoleで実行するコマンド名

参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment