mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 23:56:25 +03:00
Since Symfony 4.1, you can fetch private services from a test using a special method - creating public aliases is not required anymore.
15 lines
312 B
JSON
15 lines
312 B
JSON
{
|
|
"copy-from-recipe": {
|
|
".env.test": ".env.test",
|
|
"bin/": "%BIN_DIR%/",
|
|
"phpunit.xml.dist": "phpunit.xml.dist",
|
|
"tests/": "tests/"
|
|
},
|
|
"gitignore": [
|
|
".phpunit",
|
|
".phpunit.result.cache",
|
|
"/phpunit.xml"
|
|
],
|
|
"aliases": ["simple-phpunit"]
|
|
}
|