PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Victor John Ukam   Laravel Active Email   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Active Email
Validate email to reject disposable addresses
Author: By
Last change:
Date: 3 months ago
Size: 878 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="https://schema.phpunit.de/11.1/phpunit.xsd" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> <testsuites> <testsuite name="Active Email Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="DB_CONNECTION" value="sqlite"/> <env name="DB_DATABASE" value=":memory:"/> </php> <source> <include> <directory suffix=".php">src/</directory> </include> </source> </phpunit>