From 4d026c3e2478fd325583687a026acaaeea1f5f4c Mon Sep 17 00:00:00 2001 From: Enrico Dias Date: Tue, 29 Oct 2019 18:56:47 -0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f887e9..18b5559 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,5 @@ echo $safeATag; To run the tests you must install the composer dependencies and then run: ``` -vendor/bin/phpunit tests/TestUrls.php +vendor/bin/phpunit ``` From df4ed33d9c3529af7508435ec8e184209916f3b1 Mon Sep 17 00:00:00 2001 From: Enrico Dias Date: Tue, 29 Oct 2019 18:56:52 -0300 Subject: [PATCH 2/2] Create .travis.yml --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7cfe5c6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: php + +php: + - '7.1' + - '7.2' + - '7.3' + +before_script: + - composer install + +script: +- php vendor/bin/phpunit \ No newline at end of file