-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Pavlico/1.5.3-version-update
Updates to composer version - 1.5.3
- Loading branch information
Showing
2 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
language: php | ||
dist: trusty | ||
php: | ||
- 7.0 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
|
||
install: composer install | ||
script: phpunit | ||
- 7.2 | ||
- 7.3 | ||
- 7.4 | ||
- 8.0 | ||
install: | ||
- composer install | ||
script: vendor/bin/phpunit --coverage-clover build/logs/clover.xml | ||
after_success: | ||
- travis_retry vendor/bin/coveralls -v | ||
notifications: | ||
slack: | ||
secure: woxqf55Y5XlEOr9WrXalAMQEay8Rqpd9RdvQXw28AZsySVIYP2btfdA7OJRTiC7znIaSXQZqAeIZhKYXCLUv6QqG/saNe9sV5MC9o6sC4FgqdaPU493X2C7KSiwMqeyY9v0bbeUUI9O/g0cnaQGD/NJmVIpvaYz6Tu0MM06fB4c= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<phpunit colors="true"> | ||
<testsuites> | ||
<testsuite name="Mailjet APIv3 PHP wrapper test suite"> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="./vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
</coverage> | ||
<testsuites> | ||
<!-- <testsuite name="Mailjet APIv3 PHP wrapper test suite"> | ||
<file>./test/Mailjet/test.php</file> | ||
</testsuite> | ||
</testsuites> | ||
</testsuite>--> | ||
<testsuite name="apiv3-wrapper"> | ||
<file>./test/Mailjet/MailjetApiv3Test.php</file> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |