Using Symfony 4, I have recently come across the message "Adding phpunit/phpunit as a dependency is discouraged." which seems to have been added in this PR. The message says to "Run php bin/phpunit" which then seems to download PHPUnit to the bin/ directory. However, I don't see why it is placed there and not in the vendor/ directory. I can see I can change the path using an ENV variable, but I don't want to do that every time I run my tests. I have tried looking up the documentation around this recipe, but there isn't much to go on.
Am I mis-understanding something?
Or is the documentation incomplete/misleading?
Symfony: How to correctly switch from phpunit/phpunit to phpunit bridge
3.4k Views Asked by Votemike At
1
There are 1 best solutions below
Related Questions in SYMFONY
- Key provided is shorter than 256 bits, only 64 bits provided
- Troubleshooting form submission in PrestaShop's hookDisplayAdminProductsExtra module
- Symfony Framework - Route cannot be found even if it is defined in Controller
- Opening modal through Update button with specified ID using ajax
- Can't revert a Loggable entity because of a Doctrine repository error
- Symfony form type option issues
- How to redirect all shopware logs (monolog) including plugins (bundles) to single target like a file or stderr
- Serialization Symfony return empty array
- scheb/2fa not detected/working on my project
- Dynamically Adding Serialization Groups to Properties in Symfony 6.4 Using Traits
- symfony No identifier/primary key specified for Entity "App\Entity\Etablissement"
- Symfony basic auth doesn't work specifically in test
- Laravel 11 upgrade with Laravel Nova v.26.4 and Symfony/finder 7
- Does Symfony need the user to be online inorder to handle messages in the messenger queue?
- How to temporary disable Xdebug for cache/container building code, but that it remains enabled for the rest of the execution?
Related Questions in PHPUNIT
- CakePHP2-PHP8 - Tests with PHPUnit ^9.5
- JobQueued event not being fired in test Laravel 11
- Laravel 11 PHPUnit tests Passport install
- How can I repair the "Latest compiled component path not found" error when testing my Laravel 10 app?
- phpunit partial mock laravel service with parameters in constructor
- Mocking inherited class where new object is created or how to unsmell my class
- phpunit only mock one method of a class
- Symfony Phpunit keeps using actual class instead of mock
- How does Laravel phpunit test assertion "$this->assertAuthenticatedAs($user, $guard = null)" work?
- Warning: XDEBUG_MODE=coverage or xdebug.mode=coverage has to be set
- Can I debug PHPUnit tests in IntelliJ/PhpStorm from devspace or kubectl?
- PhpStorm | PHPUnit | Feature test | Xdebug | Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
- Running PHPUnit from Eclipse result in 0 % for code coverage
- Kohana - HTTP Tests
- PHPUnit Data Provider error: ArgumentCountError: Too few arguments to function, 0 passed in, and exactly 2 expected
Related Questions in SYMFONY4
- How to output instance of DC2Type:array
- Prefix routes with dynamic locale depending on user preferences - symfony 4
- Shopware 6 Plugin: How to Implement Custom Fields for Customers?
- EasyAdmin: is there any way to have entity's fileds when calling setTemplatePath method in easyadmin?
- Multiple conditional count in one to many data fetching with Doctrine ORM
- API Platform serialization groups with multiple views
- After updating from 10.6 pimcore v to 11 version, facing version count issue
- Undefined constant "OCI_NO_AUTO_COMMIT"
- Failed to create object: error for Sonata_admin in Symfony 4
- Symfony service decoration, what does it actually mean?
- Validation password confirmation in Symfony
- MJML to HTML slow
- Uncaught PHP Exception LogicException: "Unable to add global "ea" as the runtime or the extensions
- Symfony: Calling a custom command from inside a controller
- Symfony - Attempted to load class "SonataDatagridBundle" from namespace "Sonata\DatagridBundle"?
Related Questions in SYMFONY-FLEX
- How to configure Renovate to use composer plugins
- functions.sh missing on Shopware 6.5.3.3 when calling watch-administration
- Updating symfony/flex fails
- Symfony/mailer in composer.json / composer.lock where to see version?
- Shopware 6.5 - update from 6.4 using symfony flex
- Symfony 6.2 does not reach token handler on token authentication
- InvalidArgumentException when trying to install a symfony flex package
- Error with Symfony Flex: You have misconfigured DNS resolver(s)
- On my private Symfony Flex recipe, files are not copied from the recipe when installing the bundle
- How to generate a private recipe JSON from the contents of a recipe directory?
- Why do I get this error when I attempt to upgrade Symfony by changing `extra.symfony.require`?
- sh: symfony-cmd: command not found
- How to update individual packages of the orm-pack, when the pack is installed instead of the individual doctrine dependencies?
- file_put_contents(/root/.composer/cache/repo/https---flex.symfony.com/): failed to open stream: Is a directory error
- Symfony 5 custom reusable bundle installation using flex - how to test and run a private recipe server
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
They now recommend using ./vendor/bin/simple-phpunit which will be installed with phpunit-bridge: https://symfony.com/doc/current/testing.html
The first call to simple-phpunit installs some requirements.