mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 23:26:40 +03:00
46 lines
1.7 KiB
JSON
46 lines
1.7 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=\"PSR12\"/>",
|
|
"",
|
|
" <file>bin/</file>",
|
|
" <file>config/</file>",
|
|
" <file>public/</file>",
|
|
" <file>src/</file>",
|
|
" <file>tests/</file>",
|
|
"",
|
|
" <exclude-pattern>config/reference\\.php$</exclude-pattern>",
|
|
"",
|
|
"</ruleset>",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "3868461a63d8cc781a00c008baea09b6594871a6"
|
|
}
|
|
}
|
|
}
|