PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Josantonius   PHP Curl   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Curl
Send HTTP requests to remote servers using Curl
Author: By
Last change:
Date: 6 years ago
Size: 779 bytes
 

Contents

Class file image Download
<?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> <server name='HTTPS' value='' /> <server name='HTTP_HOST' value='site.com' /> </php> <testsuites> <testsuite name="Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>src</directory> </whitelist> </filter> </phpunit>