diff --git a/.gitignore b/.gitignore index 94a6a25288..8d549d7633 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.idea vendor/ composer.lock phpunit.xml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..7459532d4a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: php +php: + - 5.5 + - 5.6 + - hhvm + +before_install: + - composer self-update + +install: composer update --prefer-source + +script: phpunit \ No newline at end of file