PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Niko Peikrishvili   Minimal Twilio PHP API Send SMS   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Minimal Twilio PHP API Send SMS
Send SMS messages using the Twilio API
Author: By
Last change:
Date: 4 years ago
Size: 1,076 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Project Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src/</directory> </whitelist> </filter> <php> <env name="TWILIO_VERSION" value="2010-04-01"/> <env name="TWILIO_API_URL" value="https://api.twilio.com/"/> <env name="TWILIO_NUMBER" value="+15005550006"/> <env name="TWILIO_ERROR_NUMBER" value="+15005550001"/> <env name="TWILIO_RECEIVER" value="+15005550006"/> <env name="TWILIO_AUTH_TOKEN" value="AUTH_TOKEN"/> <env name="TWILIO_SID" value="SID"/> </php> </phpunit>