Created
June 21, 2018 14:18
-
-
Save brettsantore/6bb3442c170f58d5fbe786ffd07b4c51 to your computer and use it in GitHub Desktop.
Config Files
This file contains hidden or 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
<?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> |
This file contains hidden or 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
<?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