PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Sergii Pryz   Transfer Object   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Transfer Object
Generate transfer objects using property hooks
Author: By
Last change: Actualised log to var directory on phpunit and phpcs
Refactored docker/sdk to change xdebug mode without re-building containers
Date: 1 month ago
Size: 1,184 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" stderr="true" beStrictAboutTestsThatDoNotTestAnything="false" displayDetailsOnPhpunitDeprecations="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true" cacheDirectory="./var/cache"> <php> <ini name="error_reporting" value="-1" /> <ini name="memory_limit" value="-1" /> </php> <testsuites> <testsuite name="UnitTests"> <directory>tests/unit</directory> </testsuite> <testsuite name="IntegrationTests"> <directory>tests/integration</directory> </testsuite> </testsuites> <source> <include> <directory>src</directory> <directory>examples</directory> </include> </source> </phpunit>