wexample/symfony-testing

Testing helpers for Symfony / PhpUnit

0.0.22 2024-11-14 16:44 UTC

This package is auto-updated.

Last update: 2024-11-14 16:45:06 UTC


README

Add to Composer

In composer.json

"autoload-dev": {
    "psr-4": {
        "Wexample\\SymfonyTesting\\Tests\\": "vendor/wexample/symfony-testing/tests/"
    }
},

Add to PhpUnit

In phpunit.xml.dist

<testsuites>
    <testsuite name="Testing Test Suite">
        <directory>vendor/symfony-testing/tests</directory>
    </testsuite>
</testsuites>