PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Julian Finkler   PHP PSR-7 Implementation of Streams   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP PSR-7 Implementation of Streams
Implements the access to data as defined in PSR-7
Author: By
Last change: change: Updated the Copyright
change: Dependencies updated and sca fixed
CS fixed, copyright updated and changelog updated
Merge remote-tracking branch 'origin/master'
First release
Date: 7 days ago
Size: 863 bytes
 

Contents

Class file image Download
<?xml version="1.0"?> <!-- ~ This file is part of the Streams package. ~ ~ Copyright 2019-2024 by Julian Finkler <[email protected]> ~ ~ For the full copyright and license information, please read the LICENSE ~ file that was distributed with this source code. --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" failOnWarning="true" displayDetailsOnTestsThatTriggerWarnings="true"> <testsuites> <testsuite name="UnitTests"> <directory>./tests/</directory> </testsuite> </testsuites> <source> <include> <directory suffix=".php">./src</directory> </include> </source> </phpunit>