PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Josantonius   PHP HTTP Request Class   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HTTP Request Class
Check the HTTP request and extract its parameters
Author: By
Last change: 2.0.0 - Improved version only compatible with PHP > 7.0
2.0.0 - Improved version only compatible with PHP > 7.0
Date: 5 years ago
Size: 913 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='REQUEST_METHOD' value='POST' /> <server name='HTTP_X_REQUESTED_WITH' value='xmlhttprequest' /> <server name='SERVER_NAME' value='localhost' /> <server name='SERVER_PORT' value='9000' /> </php> <testsuites> <testsuite name="Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>src</directory> </whitelist> </filter> </phpunit>