Skip to content

Commit 50bdca8

Browse files
authored
Merge pull request #1 from svpernova09/travis
🚧 first shot at travis config
2 parents 30afe13 + 369b1fd commit 50bdca8

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -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

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false">
11+
<testsuites>
12+
<testsuite name="Unit">
13+
<directory>./tests</directory>
14+
</testsuite>
15+
</testsuites>
16+
</phpunit>

0 commit comments

Comments
 (0)