PHP Classes

File: phpcs.xml

Recommend this page to a friend!
  Classes of Carlos Artur Curvelo da Matos   Mnemosyne Attributes based PHP caching   phpcs.xml   Download  
File: phpcs.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Mnemosyne Attributes based PHP caching
Cache class functions' output using annotations
Author: By
Last change:
Date: 10 days ago
Size: 826 bytes
 

Contents

Class file image Download
<ruleset name="Custom PHPCS Configuration"> <description>PHP_CodeSniffer configuration following PSR-12 standards</description> <!-- Paths to include or exclude from the analysis --> <file>./src</file> <exclude-pattern>./vendor</exclude-pattern> <!-- Use PSR-12 as base --> <rule ref="PSR12"/> <!-- Enable auto fixing and configure tools --> <arg name="colors"/> <arg value="sp"/> <arg name="basepath" value="."/> <arg name="extensions" value="php"/> <arg name="parallel" value="75"/> <arg name="cache" value=".phpcs-cache"/> <arg name="tab-width" value="4"/> <arg name="encoding" value="utf-8"/> <!-- Exclude some specific rules if needed --> <rule ref="Generic.Files.LineLength"> <properties> <property name="lineLimit" value="120"/> <property name="absoluteLineLimit" value="120"/> </properties> </rule> </ruleset>