diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..178e313 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +phpunit.xml +vendor +composer.lock +composer.phar diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ac80300 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: php + +php: + - 5.3 + - 5.4 + +before_script: + - wget -nc http://getcomposer.org/composer.phar + - php composer.phar install + +script: phpunit --coverage-text + diff --git a/Tests/bootstrap.php b/Tests/bootstrap.php new file mode 100644 index 0000000..861c4e9 --- /dev/null +++ b/Tests/bootstrap.php @@ -0,0 +1,18 @@ + - - + - - ./Tests/ + + ./Tests @@ -22,7 +11,9 @@ ./ + ./Resources ./Tests + ./vendor