{ "manifests": { "phpunit/phpunit": { "manifest": { "copy-from-recipe": { ".env.test": ".env.test", "phpunit.xml.dist": "phpunit.xml.dist", "tests/": "tests/" }, "gitignore": [ "/phpunit.xml", ".phpunit.result.cache" ], "post-install-output": [ " ", " Suggest: install Symfony's PHPUnit Bridge instead of phpunit/phpunit ", " ", "", "Symfony's PHPUnit bridge is a wrapper around PHPUnit that adds reports for deprecated code", "calls, an isolated PHPUnit that's separate from the dependencies of your app and more.", "See: https://symfony.com/doc/current/components/phpunit_bridge.html.", "", " * If you want to install the PHPUnit bridge:", " 1. Remove PHPUnit: composer remove --dev phpunit/phpunit", " 2. Install Symfony's bridge: composer require --dev symfony/phpunit-bridge" ] }, "files": { ".env.test": { "contents": [ "# define your env variables for the test env here", "KERNEL_CLASS='App\\Kernel'", "APP_SECRET='$ecretf0rt3st'", "SYMFONY_DEPRECATIONS_HELPER=999999", "" ], "executable": false }, "phpunit.xml.dist": { "contents": [ "", "", "", "", " ", " ", " ", " ", " ", "", " ", " ", " tests", " ", " ", "", " ", " ", " src", " ", " ", "", "" ], "executable": false }, "tests/bootstrap.php": { "contents": [ "bootEnv(dirname(__DIR__).'/.env');", "}", "" ], "executable": false } }, "ref": "477e1387616f39505ba79715f43f124836020d71" } } }