Symfony 2 にプロジェクトがあり、Windows 7 で PHPUNIT を使用したいと考えています。
On githut phpunit is:
Composer
Simply add a dependency on phpunit/phpunit to your project's composer.json file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json file that just defines a development-time dependency on PHPUnit 3.7:
{
"require-dev": {
"phpunit/phpunit": "3.7.*"
}
}
For a system-wide installation via Composer, you can run:
composer global require 'phpunit/phpunit=3.7.*'
Make sure you have ~/.composer/vendor/bin/ in your path.
最初にシステム全体のインストールを使用しますが、これがいつインストールされたかわかりません。次に、composer.json に require-dev を追加します。これにより、C:/wamp/www/myproject/vendor/symfony に phpunit がインストールされました。次にコマンドを試します:
composer install --dev
そして、私はphpunitを使用できません。cmd.exe で「phpunit」と入力すると、エラーが発生します。
'phpunit' is not recognized as an internal or external command operable program or batch file
どのようにphpunitを使用できますか? Windows 7、Wamp サーバー、および php 5.4.12 を使用しています。