Skip to content

Commit 81ab4a6

Browse files
wip
1 parent d3f5fe9 commit 81ab4a6

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

Diff for: .gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ build
44
composer.lock
55
coverage
66
docs
7-
phpunit.xml
8-
phpstan.neon
97
testbench.yaml
108
vendor
119
node_modules

Diff for: phpstan.neon

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
parameters:
2+
level: 9
3+
paths:
4+
- src

Diff for: phpunit.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
>
7+
<testsuites>
8+
<testsuite name="Architecture">
9+
<directory>./tests/Architecture</directory>
10+
</testsuite>
11+
<testsuite name="Unit">
12+
<directory>./tests/Unit</directory>
13+
</testsuite>
14+
</testsuites>
15+
<source>
16+
<include>
17+
<directory>src</directory>
18+
</include>
19+
</source>
20+
</phpunit>

0 commit comments

Comments
 (0)