Skip to content

Instantly share code, notes, and snippets.

@ryu1
Forked from mamor/gist:4986939
Created May 18, 2013 16:17
Show Gist options
  • Save ryu1/5604966 to your computer and use it in GitHub Desktop.
Save ryu1/5604966 to your computer and use it in GitHub Desktop.

PhpStorm + FuelPHPの設定メモ

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

PHPUnitの設定例(Macで確認)

  1. PhpStorm > Preferences > 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 でカバレッジも出力される

Rictyが汚かったので綺麗に(Winで確認)

インストールディレクトリ/bin/PhpStorm.exe.vmoptions に以下を追記

-Dswing.aatext=true
-Dawt.useSystemAAFontSettings=off

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