Skip to content

Commit 4f4ba98

Browse files
committed
Fix phpunit.xml and psalm.xml
1 parent f3402bd commit 4f4ba98

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

phpunit.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
~ License-Filename: LICENSE
1616
-->
1717

18-
<phpunit bootstrap="vendor/autoload.php">
18+
<phpunit
19+
bootstrap="./vendor/autoload.php"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.4/phpunit.xsd"
22+
>
1923
<testsuites>
2024
<testsuite name="phpunit-array-asserts">
2125
<directory>./tests/Unit</directory>

psalm.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<!--
3+
~ PHPUnitArrayAssertions - Array-related PHPUnit assertions for API testing.
4+
~
5+
~ @copyright Copyright (c) 2021, Daniel Rudolf (<https://www.daniel-rudolf.de>)
6+
~
7+
~ This file is copyrighted by the contributors recorded in the version control
8+
~ history of the file, available from the following original location:
9+
~
10+
~ <https://github.com/PhrozenByte/phpunit-throwable-asserts/blob/master/psalm.xml>
11+
~
12+
~ @license http://opensource.org/licenses/MIT The MIT License
13+
~
14+
~ SPDX-License-Identifier: MIT
15+
~ License-Filename: LICENSE
16+
-->
17+
218
<psalm
319
errorLevel="4"
420
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

0 commit comments

Comments
 (0)