Skip to content

Commit

Permalink
BuildMaster release: 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
securesubmit-buildmaster committed Feb 9, 2021
1 parent 2c07f3f commit efd3b1b
Show file tree
Hide file tree
Showing 129 changed files with 22,297 additions and 12,766 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ composer.phar
composer
/docs/
/docs-cache/

.idea
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"php": ">= 5.5.9",
"ext-curl": "*",
"ext-dom": "*",
"ext-openssl": "*"
"ext-openssl": "*",
"ext-json": "*",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
Expand Down
98 changes: 50 additions & 48 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,48 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./test/setup.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<php>
<ini name="zend.enable_gc" value="0"/>
<ini name="memory_limit" value="-1"/>
<!-- error_reporting(E_ALL); -->
<ini name="error_reporting" value="32767"/>
</php>

<testsuites>
<testsuite name="all">
<directory>./test/</directory>
</testsuite>
<testsuite name="unit">
<directory>./test/Unit/</directory>
</testsuite>
<testsuite name="integration">
<directory>./test/Integration/</directory>
</testsuite>
<testsuite name="certification">
<directory>./test/Integration/Gateways/PorticoConnector/Certifications/</directory>
<directory>./test/Integration/Gateways/RealexConnector/Certifications/</directory>
</testsuite>
<testsuite name="portico">
<directory>./test/Integration/Gateways/PorticoConnector/</directory>
</testsuite>
<testsuite name="realex">
<directory>./test/Integration/Gateways/RealexConnector/</directory>
</testsuite>

</testsuites>

<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<directory>./test/</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
<!-- vim: set ft=xml -->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./test/setup.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<php>
<ini name="zend.enable_gc" value="0"/>
<ini name="memory_limit" value="-1"/>
<!-- error_reporting(E_ALL); -->
<ini name="error_reporting" value="32767"/>
</php>

<testsuites>
<testsuite name="all">
<directory>./test/</directory>
</testsuite>
<testsuite name="unit">
<directory>./test/Unit/</directory>
</testsuite>
<testsuite name="integration">
<directory>./test/Integration/</directory>
</testsuite>
<testsuite name="certification">
<directory>./test/Integration/Gateways/PorticoConnector/Certifications/</directory>
<directory>./test/Integration/Gateways/RealexConnector/Certifications/</directory>
</testsuite>
<testsuite name="portico">
<directory>./test/Integration/Gateways/PorticoConnector/</directory>
</testsuite>
<testsuite name="realex">
<directory>./test/Integration/Gateways/RealexConnector/</directory>
</testsuite>
<testsuite name="gpapi">
<directory>./test/Integration/Gateways/GpApiConnector/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<directory>./test/</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
<!-- vim: set ft=xml -->
Loading

0 comments on commit efd3b1b

Please sign in to comment.