PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Junior Grossi   Corcel (Laravel + WordPress)   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Corcel (Laravel + WordPress)
Use the WordPress backend with any PHP application
Author: By
Last change: phpunit: display deprecations
fix and update test
Merge pull request #558 from pawawat/fix-missing-retrieved-event-in-post-model

fix missing retrieved event in Post model
Date: 2 days ago
Size: 856 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" displayDetailsOnPhpunitDeprecations="true" > <testsuites> <testsuite name="Unit"> <directory>./tests/Unit/</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> <source> <include> <directory suffix=".php">src/</directory> </include> </source> </phpunit>