mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"manifests": {
|
|
"php-cs-fixer/shim": {
|
|
"manifest": {
|
|
"copy-from-recipe": {
|
|
".php-cs-fixer.dist.php": ".php-cs-fixer.dist.php"
|
|
},
|
|
"gitignore": [
|
|
"/.php-cs-fixer.php",
|
|
"/.php-cs-fixer.cache"
|
|
]
|
|
},
|
|
"files": {
|
|
".php-cs-fixer.dist.php": {
|
|
"contents": [
|
|
"<?php",
|
|
"",
|
|
"$finder = (new PhpCsFixer\\Finder())",
|
|
" ->in(__DIR__)",
|
|
" ->exclude('var')",
|
|
" ->notPath([",
|
|
" 'config/bundles.php',",
|
|
" 'config/reference.php',",
|
|
" ])",
|
|
";",
|
|
"",
|
|
"return (new PhpCsFixer\\Config())",
|
|
" ->setRules([",
|
|
" '@Symfony' => true,",
|
|
" ])",
|
|
" ->setFinder($finder)",
|
|
";",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "6cf95ac1baa3d6f5816dd4db7281997912f239a6"
|
|
}
|
|
}
|
|
}
|