2013-01-01から1年間の記事一覧

Symfony2開発環境構築 -PHPUnit編-

PHPUnitのインストール その前にPEARをインストールする。 $ chmod -R ug+w /usr/local/Cellar/php54/5.4.15/lib/php$ pear config-set php_ini /usr/local/etc/php/5.4/php.ini $ pear config-set auto_discover 1$ pear install pear.phpunit.de/PHPUnit$ …

Symfony2開発環境構築 -PHP編-

Homebrewをインストール URL http://mxcl.github.io/homebrew/ 必要なもの Xcode Command Line Tools for Xcode インストール $ ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)" Gitもインストールされた! 2014-01-20追記 homebrewのインストー…

Gitの各種設定

git

コミッターの名前とメールアドレスを設定 $ git config user.name "hchuno apo" $ git config user.email hchuno@test.com 適用されているかどうか確認。 $ git config user.name hchuno apo $ git config user.email hchuno@test.com Gitの各種コマンド結果…