Skip to content

Commit 4d56aa5

Browse files
committed
Update
1 parent 95d2581 commit 4d56aa5

File tree

3 files changed

+15
-22
lines changed

3 files changed

+15
-22
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/vendor
22
/.idea
3+
.phpunit.cache/
34
composer.phar
45
composer.lock
56
.DS_Store

README.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
This is a Laravel 4-10 package for working with trees in relational databases.
88

9+
* **Laravel 11.0** is supported since v6.0.3
910
* **Laravel 10.0** is supported since v6.0.2
1011
* **Laravel 9.0** is supported since v6.0.1
1112
* **Laravel 8.0** is supported since v6.0.0

phpunit.xml

+13-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="phpunit.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
>
11-
<testsuites>
12-
<testsuite name="Package Test Suite">
13-
<directory suffix=".php">./tests/</directory>
14-
</testsuite>
15-
</testsuites>
16-
17-
<filter>
18-
<whitelist>
19-
<directory>./src</directory>
20-
</whitelist>
21-
</filter>
22-
</phpunit>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="phpunit.php" colors="true" processIsolation="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<testsuites>
4+
<testsuite name="Package Test Suite">
5+
<directory suffix=".php">./tests/</directory>
6+
</testsuite>
7+
</testsuites>
8+
<source>
9+
<include>
10+
<directory>./src</directory>
11+
</include>
12+
</source>
13+
</phpunit>

0 commit comments

Comments
 (0)