Add Travis and move phpunit.xml to phpunit.xml.dist

This commit is contained in:
PJ Dietz 2014-07-26 12:44:28 -04:00
parent b2ad26acca
commit 991240a3e8
2 changed files with 22 additions and 1 deletions

11
.travis.yaml Normal file
View File

@ -0,0 +1,11 @@
language: php
php:
- "5.5"
- "5.4"
before_script:
- composer selfupdate
- composer install --prefer-source
script:
- vendor/bin/phpunit

View File

@ -1,5 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="true"
>
<testsuites>
<testsuite name="WellRESTed Test Suite">
<directory>./test/</directory>