Skip to content

Commit 39a8b52

Browse files
authored
Merge pull request #2 from jayw92/update-composer-add-phpunitxml
Fix composer.json and add phpunit.xml
2 parents 2cc6384 + f684393 commit 39a8b52

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "microsoft/msads",
33
"description": "This project provides the PHP client library for the REST-based Microsoft Ads API.",
44
"keywords": ["php", "bing ads", "bingads", "microsoft advertising", "microsoft ads", "ads", "msads", "sdk", "rest", "api"],
5-
"homepage": "https://github.com/BingAds/BingAds-PHP-SDK/tree/msads",
5+
"homepage": "https://github.com/BingAds/BingAds-PHP-REST-SDK",
66
"license": "Apache-2.0",
77
"type": "library",
88
"authors": [
99
{
1010
"name": "Microsoft Advertising",
11-
"homepage": "https://github.com/BingAds/BingAds-PHP-SDK/commits/msads/"
11+
"homepage": "https://github.com/BingAds/BingAds-PHP-REST-SDK/graphs/contributors"
1212
}
1313
],
1414
"require": {

phpunit.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">src</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="tests">
10+
<directory>./test/</directory>
11+
</testsuite>
12+
</testsuites>
13+
<php>
14+
<ini name="error_reporting" value="E_ALL"/>
15+
</php>
16+
</phpunit>

0 commit comments

Comments
 (0)