Browse Source

add travis and phpunit config

pull/39/head
Aaron Parecki 8 years ago
parent
commit
6a73c40964
2 changed files with 14 additions and 0 deletions
  1. +7
    -0
      .travis.yaml
  2. +7
    -0
      phpunit.xml

+ 7
- 0
.travis.yaml View File

@ -0,0 +1,7 @@
language: php
php:
- 5.5
sudo: false
before_script:
- composer self-update
- composer install --prefer-dist --no-interaction

+ 7
- 0
phpunit.xml View File

@ -0,0 +1,7 @@
<phpunit bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Tests">
<directory>tests/</directory>
</testsuite>
</testsuites>
</phpunit>

Loading…
Cancel
Save