简体   繁体   中英

phpunit run problems in phpstorm, Cannot create phar

I am running phpStorm 7.1.3 version on Windows 7 and I have done everything accordingly to install composer and then phpunit. Now I have it in vendors directory. But every time I run my program which is a simple Yii application I get the same error.

PHP Fatal error: Uncaught exception 'UnexpectedValueException' with message 'Cannot create phar 'C:/wamp/www/myproject/vendor/bin/phpunit', file extension (or combination) not recognised or the directory does not exist' in C:\\Users\\myUser\\AppData\\Local\\Temp\\ide-phpunit.php:177

Please help, I am stuck here already two days and cant get this working, almost changed and reinstalled everything but is not helping.

I didn't use pear, I downloaded everything through the phpStorm. I downloaded composer, and after that through phpStorm composer I downloaded phpUnit 3.7.37.

Here is the screenshot of my settings for composer

在此输入图像描述

Here is the content of my composer.json

{
    "require": {
        "phpunit/phpunit": "3.7.37"
    }
}

Here is the screenshot of my settings for PHPunit 在此输入图像描述

On your 2nd screenshot (PHPUnit settings):

  • Why did you choose PHAR option if you are using COMPOSER?
  • Why did you point to .../bin/phpunit (even if you choose 3rd option .. you should point it to a PHAR file then)?

Therefore:

  • For composer installations you should use 2nd ( "Use custom loader" ) option.
  • The edit box -- you should point it to your autoloader script (yes -- composer autoloader script).

Related (similar issue): https://stackoverflow.com/a/17316104/783119

如果你没有使用作曲家,但是'路径到phpunit.phar'选项并仍然收到此错误,只需确保你指定的路径以.phar结尾(通常以phpunit.phar结尾)我看到同样的错误但是因为我的路径指向我的命令行别名,而不是实际的.phar文件,它会挂在不正确的扩展和保释上。

I was trying to run phpUnit on zend framework 1.12.9 and had the same problem - solved it by changing path to phpunit.phar to use custom loader. Then You have to point it to the generated autoload.php by composer.

In my case that was

C:\wamp\www\phpu3\vendor\autoload.php

Later, the important thing to do was to point the bootstrap file from tests.

When you download the phpunit.phar file using the wget command, following the instruction on the getting started manual - https://phpunit.de/getting-started/phpunit-4.html the "phar" extension is being removed, and PHPSTORM has issues to interrupt this file. I've changed the extension:

mv phpunit phpunit.phar

make sure you update the path to phpunit.phar file in the IDE setting accordingly

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM