PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Laravel MCP SDK   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content typex: text/plain
Description: Auxiliary data
Class: Laravel MCP SDK
Create tools to process user requests with prompts
Author: By
Last change:
Date: Yesterday
Size: 957 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/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache"> <testsuites> <testsuite name="Unit"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> <testsuite name="Feature"> <directory suffix="Test.php">./tests/Feature</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="MCP_SERVER_HOST" value="127.0.0.1"/> <env name="MCP_SERVER_PORT" value="3000"/> <env name="MCP_SERVER_TRANSPORT" value="http"/> </php> <source> <include> <directory suffix=".php">./src</directory> </include> <exclude> <directory suffix=".php">./tests</directory> <directory suffix=".php">./vendor</directory> </exclude> </source> </phpunit>