Skip to content

Commit 0cb1add

Browse files
committed
src - move classes unders src folder,
update composer and phpunit accordingly
1 parent d544572 commit 0cb1add

24 files changed

+7
-3
lines changed

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"fabpot/php-cs-fixer": "~1.8"
2323
},
2424
"autoload": {
25-
"psr-4": { "WsdlToPhp\\PhpGenerator\\": "" }
25+
"psr-4": {
26+
"WsdlToPhp\\PhpGenerator\\": "src",
27+
"WsdlToPhp\\PhpGenerator\\Tests\\": "Tests"
28+
}
2629
}
2730
}

phpunit.xml.dist

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
</php>
1212

1313
<testsuite name="Test Suite">
14-
<directory>./Tests</directory>
14+
<directory>./Tests/</directory>
1515
</testsuite>
1616

1717
<filter>
1818
<whitelist>
1919
<directory>./</directory>
2020
<exclude>
21-
<directory>Tests/</directory>
21+
<directory>./Tests</directory>
22+
<directory>./vendor</directory>
2223
</exclude>
2324
</whitelist>
2425
</filter>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)