Skip to content

Commit

Permalink
Merge pull request #9 from Pavlico/1.5.3-version-update
Browse files Browse the repository at this point in the history
Updates to composer version - 1.5.3
  • Loading branch information
Pavlico authored Aug 20, 2021
2 parents 6851496 + 3d72bc1 commit f19e200
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
20 changes: 13 additions & 7 deletions .travis.yml
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=
19 changes: 13 additions & 6 deletions phpunit.xml.dist
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>

0 comments on commit f19e200

Please sign in to comment.