Remove phpunit.xml and phpcs.xml

Use defaults from new workflows.
This commit is contained in:
Sukhwinder Dhillon 2025-12-15 12:37:02 +01:00
parent 5425933405
commit 93ff449fde
3 changed files with 0 additions and 43 deletions

1
.gitignore vendored
View file

@ -4,4 +4,3 @@
# Except those related to Git and GitHub
!.git*
!.github
!.phpcs.xml

View file

@ -1,26 +0,0 @@
<?xml version="1.0"?>
<ruleset name="Eagle">
<description>Sniff our code a while</description>
<file>./</file>
<exclude-pattern>vendor/*</exclude-pattern>
<arg name="report-width" value="auto"/>
<arg name="report-full"/>
<arg name="report-gitblame"/>
<arg name="report-summary"/>
<arg name="encoding" value="UTF-8"/>
<arg name="extensions" value="php"/>
<rule ref="PSR12">
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="120"/>
<property name="absoluteLineLimit" value="0"/>
</properties>
</rule>
</ruleset>

View file

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Icinga DB Web PHP Unit Tests">
<directory suffix="Test.php">test/php</directory>
</testsuite>
</testsuites>
</phpunit>