Skip to content

Instantly share code, notes, and snippets.

@brettsantore
Created June 21, 2018 14:18
Show Gist options
  • Save brettsantore/6bb3442c170f58d5fbe786ffd07b4c51 to your computer and use it in GitHub Desktop.
Save brettsantore/6bb3442c170f58d5fbe786ffd07b4c51 to your computer and use it in GitHub Desktop.
Config Files
<?xml version="1.0"?>
<ruleset name="Custom Standard" namespace="Santore">
<file>./src</file>
<file>./tests</file>
<rule ref="ZEND"/>
<!-- Ignore Camel Case Names In Tests-->
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
</ruleset>
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./vendor/autoload.php"
>
<php>
<ini name="intl.default_locale" value="en"/>
<ini name="intl.error_level" value="0"/>
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="Project Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment