Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4 bootstrap="vendor/autoload.php"
5 colors="true"
6 cacheDirectory=".phpunit.cache">
7 <testsuites>
8 <testsuite name="Parity Test Suite">
9 <directory suffix="Test.php">./tests/</directory>
10 <exclude>./tests/Fixtures/</exclude>
11 </testsuite>
12 </testsuites>
13 <source>
14 <include>
15 <directory>src/</directory>
16 </include>
17 </source>
18 <php>
19 <env name="APP_ENV" value="testing"/>
20 <env name="CACHE_DRIVER" value="array"/>
21 <env name="SESSION_DRIVER" value="array"/>
22 <env name="QUEUE_CONNECTION" value="sync"/>
23 <env name="DB_CONNECTION" value="sqlite"/>
24 <env name="DB_DATABASE" value=":memory:"/>
25 </php>
26</phpunit>