Skip to content

Commit bc4c2e1

Browse files
committed
update : refactor app structure
1 parent 075565c commit bc4c2e1

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

phpstan.neon

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
parameters:
2+
level: 6
3+
paths:
4+
- src
5+
- tests
6+
excludePaths:
7+
- src/Bridge/Laravel/*

phpunit.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit bootstrap="tests/Bootstrap.php" colors="true">
3+
<testsuites>
4+
<testsuite name="PHP Countries Data">
5+
<directory>tests</directory>
6+
</testsuite>
7+
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">src</directory>
11+
</include>
12+
<exclude>
13+
<directory suffix=".php">src/Bridge/Laravel</directory>
14+
</exclude>
15+
</source>
16+
17+
</phpunit>

0 commit comments

Comments
 (0)