-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48737be
commit b223b88
Showing
5 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="Oxid Coding Standard"> | ||
<description>Oxid Coding Standard</description> | ||
|
||
<!-- Paths to check --> | ||
<file>../src/</file> | ||
<file>./</file> | ||
<!-- | ||
<file>../translations</file> | ||
--> | ||
<file>../migration</file> | ||
<exclude-pattern>./tests/Codeception/Config</exclude-pattern> | ||
|
||
<!-- display progress --> | ||
<arg value="p"/> | ||
<arg name="colors"/> | ||
<arg name="extensions" value="php,dist,phtml"/> | ||
|
||
<!-- inherit rules from: --> | ||
<rule ref="PSR12"/> | ||
|
||
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/> | ||
<rule ref="Squiz.WhiteSpace.OperatorSpacing"> | ||
<properties> | ||
<property name="ignoreNewlines" value="true"/> | ||
</properties> | ||
</rule> | ||
|
||
<!-- ignore method declaration rules for tests --> | ||
<rule ref="PSR2.Methods.MethodDeclaration"> | ||
<exclude-pattern>./</exclude-pattern> | ||
</rule> | ||
|
||
<!-- ignore property declaration rules for tests --> | ||
<rule ref="PSR2.Classes.PropertyDeclaration"> | ||
<exclude-pattern>./</exclude-pattern> | ||
</rule> | ||
</ruleset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" beStrictAboutOutputDuringTests="false" cacheDirectory=".phpunit.cache" requireCoverageMetadata="false" beStrictAboutCoverageMetadata="true"> | ||
<coverage/> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory suffix="Test.php">tests/Unit</directory> | ||
</testsuite> | ||
<testsuite name="Integration"> | ||
<directory suffix="Test.php">tests/Integration</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">../src/</directory> | ||
</include> | ||
</source> | ||
</phpunit> |