We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30afe13 + 369b1fd commit 50bdca8Copy full SHA for 50bdca8
.travis.yml
@@ -0,0 +1,9 @@
1
+language: php
2
+php:
3
+- '7.2'
4
+- nightly
5
+matrix:
6
+ allow_failures:
7
+ - php: nightly
8
+before_script: composer install
9
+script: vendor/bin/phpunit
phpunit.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="false"
+ backupStaticAttributes="false"
+ bootstrap="vendor/autoload.php"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ processIsolation="false"
10
+ stopOnFailure="false">
11
+ <testsuites>
12
+ <testsuite name="Unit">
13
+ <directory>./tests</directory>
14
+ </testsuite>
15
+ </testsuites>
16
+</phpunit>
0 commit comments