mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 15:46:52 +03:00
44 lines
1.6 KiB
JSON
44 lines
1.6 KiB
JSON
{
|
|
"manifests": {
|
|
"squizlabs/php_codesniffer": {
|
|
"manifest": {
|
|
"copy-from-recipe": {
|
|
"phpcs.xml.dist": "phpcs.xml.dist"
|
|
},
|
|
"gitignore": [
|
|
"/.phpcs-cache",
|
|
"/phpcs.xml"
|
|
]
|
|
},
|
|
"files": {
|
|
"phpcs.xml.dist": {
|
|
"contents": [
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>",
|
|
"",
|
|
"<ruleset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"",
|
|
" xsi:noNamespaceSchemaLocation=\"vendor/squizlabs/php_codesniffer/phpcs.xsd\">",
|
|
"",
|
|
" <arg name=\"basepath\" value=\".\"/>",
|
|
" <arg name=\"cache\" value=\".phpcs-cache\"/>",
|
|
" <arg name=\"colors\"/>",
|
|
" <arg name=\"extensions\" value=\"php\"/>",
|
|
"",
|
|
" <rule ref=\"PSR2\"/>",
|
|
"",
|
|
" <file>bin/</file>",
|
|
" <file>config/</file>",
|
|
" <file>public/</file>",
|
|
" <file>src/</file>",
|
|
" <file>tests/</file>",
|
|
"",
|
|
"</ruleset>",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "0dc9cceda799fd3a08b96987e176a261028a3709"
|
|
}
|
|
}
|
|
}
|