mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-15 02:56:09 +01:00
Daniel Siepmann
d3878d928d
* Adjust names of tasks. * Add composer require checker. * Install without plugins to not use custom installer and stay compatible with require checker. * Stay phpunit 10 compatible.
19 lines
499 B
XML
19 lines
499 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="project">
|
|
<description>This project coding standard</description>
|
|
|
|
<file>Classes/</file>
|
|
<file>Tests/</file>
|
|
|
|
<!-- Set default settings -->
|
|
<arg value="sp"/>
|
|
<arg name="colors"/>
|
|
<arg name="encoding" value="utf-8" />
|
|
<arg name="extensions" value="php" />
|
|
|
|
<!-- Base rules -->
|
|
<rule ref="PSR12" />
|
|
<rule ref="Generic.Files.LineLength.TooLong">
|
|
<exclude-pattern>/Tests/*</exclude-pattern>
|
|
</rule>
|
|
</ruleset>
|