Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit a838180

Browse files
committed
Moved tests to separated folder and fixed php requirement
1 parent 9385ae8 commit a838180

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

composer.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,13 @@
1414
"": "src/"
1515
}
1616
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"": "tests"
20+
}
21+
},
1722
"require": {
18-
"php": "^7.1.3",
23+
"php": "^7.0",
1924
"microsoft/application-insights": "^0.4.4"
2025
},
2126
"require-dev": {

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<testsuites>
1818
<testsuite name="default">
19-
<directory suffix="Test.php">./src/AppInsightsPHP/Client/Tests</directory>
19+
<directory suffix="Test.php">./tests/AppInsightsPHP/Client/Tests</directory>
2020
</testsuite>
2121
</testsuites>
2222
</phpunit>

0 commit comments

Comments
 (0)