mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"manifests": {
|
|
"friendsofphp/php-cs-fixer": {
|
|
"manifest": {
|
|
"copy-from-recipe": {
|
|
".php_cs.dist": ".php_cs.dist"
|
|
},
|
|
"gitignore": [
|
|
"/.php_cs",
|
|
"/.php_cs.cache"
|
|
]
|
|
},
|
|
"files": {
|
|
".php_cs.dist": {
|
|
"contents": [
|
|
"<?php",
|
|
"",
|
|
"$finder = PhpCsFixer\\Finder::create()",
|
|
" ->in(__DIR__)",
|
|
" ->exclude('var')",
|
|
";",
|
|
"",
|
|
"return PhpCsFixer\\Config::create()",
|
|
" ->setRules([",
|
|
" '@Symfony' => true,",
|
|
" ])",
|
|
" ->setFinder($finder)",
|
|
";",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "c1947bad147704aeaf0285745f0baae927a58959"
|
|
}
|
|
}
|
|
}
|